Mercurial > hg > Blog
annotate 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 |
rev | line source |
---|---|
9
6e2bcaecf3ec
include the theme locally to avoid any dependency on the pelican-themes git repo. Those guys don't incorporate the fixes as quickly as I need plus, I already changed the theme to incorporate the juvia comments.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
1 {% extends "base.html" %} |
6e2bcaecf3ec
include the theme locally to avoid any dependency on the pelican-themes git repo. Those guys don't incorporate the fixes as quickly as I need plus, I already changed the theme to incorporate the juvia comments.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
2 {% block title %} {% endblock %} |
6e2bcaecf3ec
include the theme locally to avoid any dependency on the pelican-themes git repo. Those guys don't incorporate the fixes as quickly as I need plus, I already changed the theme to incorporate the juvia comments.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
3 {% block content %} |
6e2bcaecf3ec
include the theme locally to avoid any dependency on the pelican-themes git repo. Those guys don't incorporate the fixes as quickly as I need plus, I already changed the theme to incorporate the juvia comments.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
4 <section id="content" class="body"> |
42
51d2ddc51e40
update the theme with the latest changes from upstream
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
9
diff
changeset
|
5 <h2 class="content-title"> |
51d2ddc51e40
update the theme with the latest changes from upstream
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
9
diff
changeset
|
6 {{ page.title }} |
51d2ddc51e40
update the theme with the latest changes from upstream
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
9
diff
changeset
|
7 {% if page.translations %} |
51d2ddc51e40
update the theme with the latest changes from upstream
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
9
diff
changeset
|
8 <a href="{{ SITEURL }}/{{ page.url }}" class="btn btn-info xsmall">{{ page.lang or DEFAULT_LANG }}</a> |
51d2ddc51e40
update the theme with the latest changes from upstream
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
9
diff
changeset
|
9 {% for translation in page.translations %} |
51d2ddc51e40
update the theme with the latest changes from upstream
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
9
diff
changeset
|
10 <a href="{{ SITEURL }}/{{ translation.url }}" class="btn btn-info xsmall">{{ translation.lang }}</a> |
51d2ddc51e40
update the theme with the latest changes from upstream
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
9
diff
changeset
|
11 {% endfor %} |
51d2ddc51e40
update the theme with the latest changes from upstream
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
9
diff
changeset
|
12 {% endif %} |
51d2ddc51e40
update the theme with the latest changes from upstream
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
9
diff
changeset
|
13 </h2> |
9
6e2bcaecf3ec
include the theme locally to avoid any dependency on the pelican-themes git repo. Those guys don't incorporate the fixes as quickly as I need plus, I already changed the theme to incorporate the juvia comments.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
14 {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">get |
6e2bcaecf3ec
include the theme locally to avoid any dependency on the pelican-themes git repo. Those guys don't incorporate the fixes as quickly as I need plus, I already changed the theme to incorporate the juvia comments.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
15 the pdf</a>{% endif %} |
6e2bcaecf3ec
include the theme locally to avoid any dependency on the pelican-themes git repo. Those guys don't incorporate the fixes as quickly as I need plus, I already changed the theme to incorporate the juvia comments.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
16 {{ page.content }} |
6e2bcaecf3ec
include the theme locally to avoid any dependency on the pelican-themes git repo. Those guys don't incorporate the fixes as quickly as I need plus, I already changed the theme to incorporate the juvia comments.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
17 </section> |
6e2bcaecf3ec
include the theme locally to avoid any dependency on the pelican-themes git repo. Those guys don't incorporate the fixes as quickly as I need plus, I already changed the theme to incorporate the juvia comments.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
18 {% endblock %} |