blog/themes/waterspill-en/templates/page.html
2023-07-20 23:34:53 -04:00

17 lines
422 B
HTML

{% 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 %}
{% block archives %} {% endblock %}