summaryrefslogtreecommitdiff
path: root/templates/post-page.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/post-page.html')
-rw-r--r--templates/post-page.html44
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 %}
- &emsp;<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 %}