aboutsummaryrefslogtreecommitdiffstats
path: root/theme/templates/article.html
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2016-06-21 18:29:50 -0400
committerbnewbold <bnewbold@robocracy.org>2016-06-21 18:29:51 -0400
commit430cec050b168c7b16edeba4c5269c3edea3f2eb (patch)
tree4af7ba3912073dfceb7eeaa5c009074d1fa66c2a /theme/templates/article.html
parent9b1522ca2fe6046dfbea44782e79774f5c428850 (diff)
downloadbnewnet-430cec050b168c7b16edeba4c5269c3edea3f2eb.tar.gz
bnewnet-430cec050b168c7b16edeba4c5269c3edea3f2eb.zip
small template fixes for CSS and XHTML validation
Thanks W3C validation tools!
Diffstat (limited to 'theme/templates/article.html')
-rw-r--r--theme/templates/article.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/theme/templates/article.html b/theme/templates/article.html
index 23bf022..dd17efd 100644
--- a/theme/templates/article.html
+++ b/theme/templates/article.html
@@ -14,15 +14,15 @@
{% block pagetitle %}
<a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark"
- title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h2>
+ title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a>
{% endblock %}
{% block content %}
-<section id="content" class="body">
- <header>
+{# <section id="content" class="body">
+ <header> #}
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(article) }}
- </header>
- <footer class="post-info">
+{# </header>
+ <footer class="post-info"> #}
<div class="right_stuff">
<abbr class="published" title="{{ article.date.isoformat() }}">
{{ article.locale_date }}
@@ -40,9 +40,9 @@
</address>
{% endif %}
</div>
- </footer><!-- /.post-info -->
+{# </footer><!-- /.post-info --> #}
<div class="entry-content">
{{ article.content }}
</div><!-- /.entry-content -->
-</section>
+{# </section> #}
{% endblock %}