summaryrefslogtreecommitdiff
path: root/_includes/post_header.html
blob: c7e185f10235946a70a394696a03b3ee56888b57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<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>