annotate themes/tuxlite_tbs/templates/article.html @ 99:fc7e1e904aba

Remove the template for my old comments system - it only produced weird looking markup without any value.
author Dirk Olmes <dirk@xanthippe.ping.de>
date Sat, 21 Dec 2019 06:44:17 +0100
parents c2b99e876559
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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 %}
99
fc7e1e904aba Remove the template for my old comments system - it only produced weird looking markup without any value.
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 72
diff changeset
26 {# {% include "simple_comments.html" %} #}
72
c2b99e876559 use the pelican_plugin_system from the standard pelican plugins instead of my own simple_comments
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 46
diff changeset
27 {% include "pelican_comment_system.html" %}
c2b99e876559 use the pelican_plugin_system from the standard pelican plugins instead of my own simple_comments
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 46
diff changeset
28 {% include "add_comment.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
29 </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
30 {% endblock %}