mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-28 19:42:37 +02:00
12 lines
367 B
HTML
12 lines
367 B
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ page.title }}{% endblock %}
|
|
{% block content %}
|
|
<section id="content" class="body">
|
|
<article>
|
|
<h1 class="entry-title">{{ page.title }}</h1>
|
|
{% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">get
|
|
the pdf</a>{% endif %}
|
|
{{ page.content }}
|
|
</article>
|
|
</section>
|
|
{% endblock %}
|