21 lines
646 B
HTML
21 lines
646 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 }}" />
|
|
{% 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 %}
|
|
{% block licence %}
|
|
<link rel="license" href="https://spdx.org/licenses/{{ post.licence }}.html" type="{{ post.licence }}" />
|
|
{% endblock %}
|