Mercurial > hg > Blog
annotate themes/tuxlite_tbs/templates/article.html @ 52:94cc5f43d9d1
add an entry about recompiling JDK classes
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Sun, 21 Dec 2014 17:40:53 +0100 |
parents | ea8a767f5111 |
children | c2b99e876559 |
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" %} |
46
ea8a767f5111
fiddle with L10N: generate the proper <html lang=""> element into the article page,
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
42
diff
changeset
|
2 {% block htmlspec %} |
ea8a767f5111
fiddle with L10N: generate the proper <html lang=""> element into the article page,
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
42
diff
changeset
|
3 {% if article.metadata.lang %} |
ea8a767f5111
fiddle with L10N: generate the proper <html lang=""> element into the article page,
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
42
diff
changeset
|
4 <html lang="{{ article.metadata.lang }}"> |
ea8a767f5111
fiddle with L10N: generate the proper <html lang=""> element into the article page,
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
42
diff
changeset
|
5 {% else %} |
ea8a767f5111
fiddle with L10N: generate the proper <html lang=""> element into the article page,
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
42
diff
changeset
|
6 {{ super() }} |
ea8a767f5111
fiddle with L10N: generate the proper <html lang=""> element into the article page,
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
42
diff
changeset
|
7 {% endif %} |
ea8a767f5111
fiddle with L10N: generate the proper <html lang=""> element into the article page,
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
42
diff
changeset
|
8 {% endblock %} |
ea8a767f5111
fiddle with L10N: generate the proper <html lang=""> element into the article page,
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
42
diff
changeset
|
9 |
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
|
10 {% 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
|
11 <div class='article'> |
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
|
12 <div class="content-title"> |
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
|
13 <h1>{{ article.title }}</h1> |
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 {% include "metadata.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
|
15 </div> |
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 |
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 <div>{{ article.content }}</div> |
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 |
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
|
19 <hr> |
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
|
20 |
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
|
21 <h2>Comments</h2> |
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
|
22 {% include "twitter.html" %} |
42
51d2ddc51e40
update the theme with the latest changes from upstream
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
10
diff
changeset
|
23 {% if DISQUS_SITENAME %} |
51d2ddc51e40
update the theme with the latest changes from upstream
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
10
diff
changeset
|
24 {% include "disqus.html" %} |
51d2ddc51e40
update the theme with the latest changes from upstream
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
10
diff
changeset
|
25 {% endif %} |
51d2ddc51e40
update the theme with the latest changes from upstream
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
10
diff
changeset
|
26 {% include "simple_comments.html" %} |
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
|
27 </div> |
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
|
28 {% endblock %} |