summaryrefslogtreecommitdiff
path: root/_includes/post_header.html
diff options
context:
space:
mode:
Diffstat (limited to '_includes/post_header.html')
-rw-r--r--_includes/post_header.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/_includes/post_header.html b/_includes/post_header.html
new file mode 100644
index 0000000..c7e185f
--- /dev/null
+++ b/_includes/post_header.html
@@ -0,0 +1,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>