summaryrefslogtreecommitdiff
path: root/_includes/post_header.html
blob: e7bdae5560aa380c44ecfd994633e80594126b31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
<div class="container">
        <h1>{{ page.title }}</h1>
        <h4 class="post-description">{{ page.description }}</h4>
        <div class="post-date" style="margin-top:20px">
                {{ page.date | date: date_format }}
        </div>
        <ul class="post-tags">
                {%- for tag in page.categories -%}
                        <li>{{ tag }}</li>
                {%- endfor -%}
        </ul>
</div>