all repos — nasg @ 5ec437de8feef9b7ba30b6b172f15f552a369ca6

templates/Singular.j2.html (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
{% 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 %}