summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--_includes/page_header.html5
-rw-r--r--_includes/post_header.html12
2 files changed, 17 insertions, 0 deletions
diff --git a/_includes/page_header.html b/_includes/page_header.html
new file mode 100644
index 0000000..bc06baa
--- /dev/null
+++ b/_includes/page_header.html
@@ -0,0 +1,5 @@
+<div class="container">
+ <h1>{{ site.title }}</h1>
+ <h2>{{ site.description }}</h2>
+ <h3>{{ page.title }}</h3>
+</div>
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>