comparison themes/tuxlite_tbs/templates/page.html @ 42:51d2ddc51e40

update the theme with the latest changes from upstream
author Dirk Olmes <dirk@xanthippe.ping.de>
date Tue, 30 Sep 2014 03:53:59 +0200
parents 6e2bcaecf3ec
children
comparison
equal deleted inserted replaced
41:47fa61e1845e 42:51d2ddc51e40
1 {% extends "base.html" %} 1 {% extends "base.html" %}
2 {% block title %} {% endblock %} 2 {% block title %} {% endblock %}
3 {% block content %} 3 {% block content %}
4 <section id="content" class="body"> 4 <section id="content" class="body">
5 <h2 class="content-title">{{ page.title }}</h2> 5 <h2 class="content-title">
6 {{ page.title }}
7 {% if page.translations %}
8 <a href="{{ SITEURL }}/{{ page.url }}" class="btn btn-info xsmall">{{ page.lang or DEFAULT_LANG }}</a>
9 {% for translation in page.translations %}
10 <a href="{{ SITEURL }}/{{ translation.url }}" class="btn btn-info xsmall">{{ translation.lang }}</a>&nbsp;
11 {% endfor %}
12 {% endif %}
13 </h2>
6 {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">get 14 {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">get
7 the pdf</a>{% endif %} 15 the pdf</a>{% endif %}
8 {{ page.content }} 16 {{ page.content }}
9 </section> 17 </section>
10 {% endblock %} 18 {% endblock %}