aboutsummaryrefslogtreecommitdiffstats
path: root/waterspill/templates/page.html
blob: 953cd5ba5439c3507190fb44e4f1d17c21b2a02f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "base.html" %}
{% block title %}{{ page.title }}{% endblock %}
{% block content %}        

<div class="blogItem">
    <h2><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></h3>
	{{ page.content }}
    {% include 'twitter.html' %}

    {% if PDF_PROCESSOR %}<h3 class="blogMeta"><a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">get
    the pdf</a></h3>{% endif %}
 
   
</div>

{% endblock %}