nasg/templates/Singular.j2.html
Peter Molnar 5ec437de8f - CSS fixes and simplifications
- prism.js inlined (only for entries with code blocks)
- pandoc is a subclass is str now
- added 'nasg' logger
- minor bugfixes
2018-08-04 09:30:26 +01:00

19 lines
595 B
HTML

{% extends "base.j2.html" %}
{% block meta %}
<meta name="author" content="{{ author.name }} <{{ author.email }}>" />
<meta name="description" content="{{ post.summary|e }}" />
<link rel="canonical" href="{{ post.url }}" />
<link rel="license" href="https://creativecommons.org/licenses/4.0/{{ post.licence }}" />
{% if post.has_code %}
<style media="all">
{% include 'prism.css' %}
</style>
{% endif %}
{% endblock %}
{% block prism %}
{% if post.has_code %}
<script>
{% include 'prism.js' %}
</script>
{% endif %}
{% endblock %}