diff options
author | garhve <git@garhve.com> | 2023-02-14 18:29:13 +0800 |
---|---|---|
committer | garhve <git@garhve.com> | 2023-02-14 18:29:13 +0800 |
commit | 734f042c9d99e0110d5e4cf8f2994a5ce27385d1 (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /templates/post-page.html | |
parent | 92e08c404fa53f304dec7490c4acb4b45dd0d7df (diff) |
delete zola
Diffstat (limited to 'templates/post-page.html')
-rw-r--r-- | templates/post-page.html | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/templates/post-page.html b/templates/post-page.html deleted file mode 100644 index 894a27d..0000000 --- a/templates/post-page.html +++ /dev/null @@ -1,44 +0,0 @@ -{% extends "base.html" %} - -{% block title %} -<title>{{ page.title }} | {{ config.title }}</title> -{% endblock %} - -{% block content %} -<p> - <div class="title_postpage">{{ page.title }}</div> -</p> -<p> - <div class="date_postpage">{{ page.date }}</div> - <div class="taxonomies_postpage"> - {% if page.taxonomies.categories %} - {% for category in page.taxonomies.categories %} - <a href="{{ get_taxonomy_url(kind="categories", name=category) | safe }}">/{{ category }}</a> - {% endfor %} - {% endif %} - {% if page.taxonomies.tags %} - {% for tag in page.taxonomies.tags %} -  <a href="{{ get_taxonomy_url(kind="tags", name=tag) | safe }}">#{{ tag }}</a> - {% endfor %} - {% endif %} - </div> -</p> - -<p> - {{ page.content | safe }} -</p> - -{% if page.extra.math %} -<script> - MathJax = { - tex: { - inlineMath: [['$', '$'], ['\\(', '\\)']] - } - }; -</script> -<script type="text/javascript" async - src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js"> -</script> -{% endif %} - -{% endblock content %} |