blog/themes/waterspill-en/templates/page.html

17 lines
422 B
HTML
Raw Normal View History

2023-07-20 19:34:24 +00:00
{% extends "base.html" %}
{% block title %}{{ page.title }}{% endblock %}
{% block content %}
<div class="blogItem">
<h2><a href="{{ SITEURL }}/pages/{{ page.url }}">{{ page.title }}</a></h3>
{{ page.content }}
{% if PDF_PROCESSOR %}<h3 class="blogMeta"><a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">get
the pdf</a></h3>{% endif %}
</div>
{% endblock %}
2023-07-21 03:34:53 +00:00
{% block archives %} {% endblock %}