diff options
Diffstat (limited to '_includes/jekyll-theme/posts/header.html')
-rw-r--r-- | _includes/jekyll-theme/posts/header.html | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/_includes/jekyll-theme/posts/header.html b/_includes/jekyll-theme/posts/header.html index c59f12c..eabb22c 100644 --- a/_includes/jekyll-theme/posts/header.html +++ b/_includes/jekyll-theme/posts/header.html @@ -1,11 +1,10 @@ <div class="post-header"> - {% assign h = 'h1' %} {% if include.feed %} - {% assign h = 'h3' %} + <h5 class="text-monospace">{{ include.title }}</h5> {% else %} {% assign post = page %} + <h1><span class="font-size-90">{{ post.title }}</span></h1> {% endif %} - <{{ h }}><span class="font-size-90">{{ post.title }}</span></{{ h }}> <div class="post-date"> <p class="text-muted font-size-90"> {%- comment -%} @@ -26,7 +25,7 @@ </a> {%- endif -%} {%- endif -%} - <span class="glyphicon glyphicon-time"></span> <span class="text-monospace">{{ post.date | date: '%-d-%b-%Y' }}</span> + <span class="glyphicon glyphicon-time"></span> <span class="text-monospace">{{ post.date | date: '%d-%b-%Y' }}</span> </p> </div> </div> |