{# -*- coding: utf-8 -*- #}
{% extends 'base.tmpl' %}
<%!
import os, mako
%>
{% macro include_if_exists(name) %}
<%
try:
tmpl = self.get_template(name)
except mako.exceptions.TemplateLookupException as e:
pass
else:
tmpl.render_context(context)
%>
{% endmacro %}
{% block extra_head %}
{% endblock %}
{% block content %}
{{ title | h }}
{{ abstract | h }}
{{ reference }}
{% if extra_links %}
{{ extra_links }}
{% endif %}
[download]