瀏覽代碼

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

Fix date styling in post layout
Mark Otto 10 年之前
父節點
當前提交
f3c3ef4c40
共有 1 個文件被更改,包括 1 次插入1 次删除
  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>