18 lines
504 B
HTML
18 lines
504 B
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ page.title }}{% endblock %}
|
|
{% block content %}
|
|
<div id="content">
|
|
<div class="post">
|
|
<h2 class="title"><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></h1>
|
|
{% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">get
|
|
the pdf</a>{% endif %}
|
|
<div style="clear: both;"> </div>
|
|
<div class="entry">
|
|
{{ page.content }}
|
|
{% include 'twitter.html' %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|