Selaa lähdekoodia

Merge pull request #71 from juliangrosshauser/fix-date-styling

Fix date styling in post layout
Mark Otto 10 vuotta sitten
vanhempi
commit
f3c3ef4c40
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      _layouts/post.html

+ 1 - 1
_layouts/post.html

@@ -4,7 +4,7 @@ layout: default
 
 <article class="post">
   <h1 class="post-title">{{ page.title }}</h1>
-  <time datetime="{{ page.date | date_to_xmlschema }}" class="page-date">{{ page.date | date_to_string }}</time>
+  <time datetime="{{ page.date | date_to_xmlschema }}" class="post-date">{{ page.date | date_to_string }}</time>
   {{ content }}
 </article>