all repos — nasg @ d3fbf2e51f0a1c52e530acc9f08ab9c5b64e2f8f

templates/Singular.j2.html (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
{% 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 }}" />
{% endblock %}
{% block prism %}
    {% if post.has_code %}
    <style media="all">
        {% include 'prism.css' %}
    </style>
    <script src="{{ site.url }}/prism.js"></script>
    {% endif %}
{% endblock %}