aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_layouts/post.html
diff options
context:
space:
mode:
Diffstat (limited to '_layouts/post.html')
-rw-r--r--_layouts/post.html18
1 files changed, 13 insertions, 5 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
index 6c4737d..8ec7626 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -1,10 +1,18 @@
---
layout: default
---
-<h1>{{ page.title }}</h1>
-<p class="text-muted">
- <span class="glyphicon glyphicon-time"></span>&nbsp;Posted on {{ page.date | date: '%-d %B %Y' }}
- {%- if page.category %} in <span class="glyphicon glyphicon-folder-open"></span>&nbsp;<a class="category" href="{{ '/' | relative_url }}{{ page.category | slugify: 'pretty' }}/">{{ page.category }}</a>{% endif %}
-</p>
+<div class="row post-header">
+ <div class="col-xs-12 col-sm-8">
+ <h1>{{ page.title }}</h1>
+ </div>
+ <div class="col-xs-12 col-sm-4 post-date">
+ <p class="text-muted">
+ {% if page.category %}
+ <span class="glyphicon glyphicon-folder-open"></span>&nbsp;<a class="category" href="{{ '/' | relative_url }}{{ page.category | slugify: 'pretty' }}/">{{ page.category }}</a>
+ {% endif %}
+ <span class="glyphicon glyphicon-time"></span>&nbsp;{{ page.date | date: '%-d&nbsp;%B&nbsp;%Y' }}
+ </p>
+ </div>
+</div>
{{ content }}
<hr/>