{% extends "base.html" %}
{% block title %}{{ page.title }}{% endblock %}
{% block robots %}
{% if page.robots %}{{ page.robots }}{% else %}index,follow{% endif %}
{% endblock %}
{% block meta_tags_in_head %}
{% if page.tags and page.category %}
{% endif %}
{% if page.category %}
{% endif %}
{% if page.description %}
{% elif page.summary %}
{% endif %}
{% if page.author %}
{% endif %}
{% endblock meta_tags_in_head %}
{% block content %}
{{ page.title }}
{% if PDF_PROCESSOR %}get
the pdf{% endif %}
{{ page.content }}
{% endblock %}