diff --git a/src/content/templates/content/article_archive.html b/src/content/templates/content/article_archive.html
index d29c09a..1c3353b 100755
--- a/src/content/templates/content/article_archive.html
+++ b/src/content/templates/content/article_archive.html
@@ -69,7 +69,7 @@
-
+ datetime="{{article.date_created|date:'Y-m-d\TH:i:sO'}}">{{ article.date_created|date }}
- {{ article.author }}
- {{comment_count}} {% trans "comments" %}
diff --git a/src/content/templates/content/article_detail.html b/src/content/templates/content/article_detail.html
index 1a4b606..82c8f06 100755
--- a/src/content/templates/content/article_detail.html
+++ b/src/content/templates/content/article_detail.html
@@ -1,53 +1,48 @@
-{% extends "base.html" %}
-{% load i18n comments thumbnail %}
+{% extends "base.html" %}{% load i18n comments thumbnail %}
{% block title %}{{ article.headline }}{% endblock %}
{% block description %}{{article.content|striptags|truncatewords:16}}{% endblock %}
{% block opengraph %}
-
-
-
-
-
-
-{% endblock %}
+
+
+
+
+
+{% endblock %}
{% block itemscope %}itemscope itemtype="http://schema.org/Article"{% endblock %}
{% block teaser %}
{{article.headline}}
-{% endblock %}
+
+{% endblock %}
{% block maincontent %}
-

- {{ article.content }}
+

{{ article.content }}
-
- {% trans 'share on' %}:
- Google+
- Twitter
- Facebook
-
-{% endblock %}
+
+ {% trans 'share on' %}:
+ Google+
+ Twitter
+ Facebook
+
{% endblock %}
-{% block comments%}
- {% render_comment_list for article %}
- {% render_comment_form for article %}
-{% endblock %}
+{% block comments%}{% render_comment_list for article %}{% render_comment_form for article %}{% endblock %}
-{% block buttonbar %}
- {% if perms.content.change_article %}
- {% trans "Edit Article" %}
- {% endif %}
-{% endblock %}
\ No newline at end of file
+{% block buttonbar %}{% if perms.content.change_article %}
+ {% trans "Edit Article" %}{% endif %}{% endblock %}