Use Jekyll's default markdown parser and highligher
[blog] / index.html
index fe093d17710c2d7f75daaeb8f211262894158587..ff6de99ff908c1645a22bbaff5bdbeb93bbf4bcb 100644 (file)
@@ -5,17 +5,17 @@ title: Home
 
 <div class="posts">
   {% for post in paginator.posts %}
-  <div class="post">
+  <article class="post">
     <h1 class="post-title">
-      <a href="{{ site.baseurl }}{{ post.url }}">
+      <a href="{{ post.url }}">
         {{ post.title }}
       </a>
     </h1>
 
-    <span class="post-date">{{ post.date | date_to_string }}</span>
+    <time datetime="{{ post.date | date_to_xmlschema }}" class="post-date">{{ post.date | date_to_string }}</time>
 
     {{ post.content }}
-  </div>
+  </article>
   {% endfor %}
 </div>
 
@@ -34,4 +34,4 @@ title: Home
   {% else %}
     <span class="pagination-item newer">Newer</span>
   {% endif %}
-</div>
\ No newline at end of file
+</div>