Markup times with <time> tags

Fixes #13
diff --git a/templates/article.html b/templates/article.html
index d5bb002..6658224 100644
--- a/templates/article.html
+++ b/templates/article.html
@@ -24,12 +24,12 @@
     {{ article.content }}
   </div>
   <div class="article_meta">
-    <p>Posted on {{ article.locale_date }}
+    <p>Posted on <time datetime="{{ article.date }}">{{ article.locale_date }}</time>
     {% if article.author %}
      by {% if AUTHORS_URL %} <a href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a>{% else %}{{ article.author}}{% endif %}
     {% endif %}
     {% if article.modified %}
-    <p>Last updated {{ article.locale_modified }}</p>
+    <p>Last updated <time datetime="{{ article.modified }}">{{ article.locale_modified }}</time></p>
     {% endif %}
     </p>
     <p>