diff options
Diffstat (limited to '_site_build/_layouts/post.html')
| -rw-r--r-- | _site_build/_layouts/post.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/_site_build/_layouts/post.html b/_site_build/_layouts/post.html index f38b1ed..df3a342 100644 --- a/_site_build/_layouts/post.html +++ b/_site_build/_layouts/post.html @@ -6,7 +6,10 @@ layout: default <h1>{{ page.title }}</h1> <time datetime="{{ page.date | date: '%Y-%m-%d' }}" pubdate>{{ page.date | date: '%A' }} {{ page.date | ordinalize }} {{ page.date | date: '%B, %Y' }}</time> {% if site.generate_category_indexes and page.categories.size != 0 %} - <div class="categories">Posted in {{ page.categories | category_links }}</div> + <span class="categories"> | Posted in {{ page.categories | category_links }}</span> + {% endif %} + {% if page.comments and site.disqus_shortname %} + <span class="comment-count"> | <a href="{{ page.url }}#disqus_thread" data-disqus-identifier="{{ page.url }}">Comments</a></span> {% endif %} </header> {{ content }} |
