diff options
Diffstat (limited to '_layouts/post.html')
-rw-r--r-- | _layouts/post.html | 18 |
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> Posted on {{ page.date | date: '%-d %B %Y' }} - {%- if page.category %} in <span class="glyphicon glyphicon-folder-open"></span> <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> <a class="category" href="{{ '/' | relative_url }}{{ page.category | slugify: 'pretty' }}/">{{ page.category }}</a> + {% endif %} + <span class="glyphicon glyphicon-time"></span> {{ page.date | date: '%-d %B %Y' }} + </p> + </div> +</div> {{ content }} <hr/> |