aboutsummaryrefslogtreecommitdiffstats
path: root/theme/templates/article.html
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2016-05-02 00:10:46 -0400
committerbnewbold <bnewbold@robocracy.org>2016-05-02 00:10:46 -0400
commit90761d2383cf6e1288e37d6a4467efdd50dafa55 (patch)
treee8031788e0ad579827d5f7d3395d9b68fd9b9e15 /theme/templates/article.html
parent9d6b1887e63d1b50b9ecc5fd9af07dfd9af44a6c (diff)
downloadbnewnet-90761d2383cf6e1288e37d6a4467efdd50dafa55.tar.gz
bnewnet-90761d2383cf6e1288e37d6a4467efdd50dafa55.zip
fix up themes (work in progress)
Diffstat (limited to 'theme/templates/article.html')
-rw-r--r--theme/templates/article.html10
1 files changed, 4 insertions, 6 deletions
diff --git a/theme/templates/article.html b/theme/templates/article.html
index d558183..8afd2c0 100644
--- a/theme/templates/article.html
+++ b/theme/templates/article.html
@@ -4,23 +4,21 @@
{% for keyword in article.keywords %}
<meta name="keywords" content="{{keyword}}" />
{% endfor %}
-
{% for description in article.description %}
<meta name="description" content="{{description}}" />
{% endfor %}
-
{% for tag in article.tags %}
<meta name="tags" content="{{tag}}" />
{% endfor %}
-
{% endblock %}
+{% block pagetitle %}
+<a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark"
+ title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h2>
+{% endblock %}
{% block content %}
<section id="content" class="body">
<header>
- <h2 class="entry-title">
- <a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark"
- title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h2>
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(article) }}
</header>