Files
pelican-themes/waterspill/templates/page.html
Miguel Ventura d4c5432d30 Page objects for PAGES already contain the proper url attribute.
Having the templates with /pages/ causes the generated links to be
wrong.
2012-09-03 00:39:05 +01:00

17 lines
412 B
HTML

{% 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 %}