diff options
Diffstat (limited to '')
-rw-r--r-- | _includes/jekyll-theme/posts/feed.html | 1 | ||||
-rw-r--r-- | _includes/jekyll-theme/posts/header.html | 7 |
2 files changed, 3 insertions, 5 deletions
diff --git a/_includes/jekyll-theme/posts/feed.html b/_includes/jekyll-theme/posts/feed.html index 629e4ee..7f5c0c6 100644 --- a/_includes/jekyll-theme/posts/feed.html +++ b/_includes/jekyll-theme/posts/feed.html @@ -4,7 +4,6 @@ {% for post in paginator.posts %} <a href="{{ post.url | relative_url }}" class="feed-entry"> {% include jekyll-theme/posts/header.html feed=true %} - <div class="text-muted">{{ post.excerpt | markdownify }}</div> </a> {% endfor %} {% include jekyll-theme/posts/paginator.html %} 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> |