_includes/post_header.html in texture-0.1 vs _includes/post_header.html in texture-0.2

- old
+ new

@@ -1,10 +1,13 @@ {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%} <div class="container"> <h1>{{ page.title }}</h1> - {% if page.description == 'Awesome Shoes' %} - <h2>{{ page.description }}</h2> - {% endif %} + <h4 class="post-description">{{ page.description }}</h4> <div class="post-date" style="margin-top:20px"> Published on {{ page.date | date: date_format }} </div> + <ul class="post-tags"> + {%- for tag in page.categories -%} + <li>{{ tag }}</li> + {%- endfor -%} + </ul> </div>