diff options
Diffstat (limited to 'source/_layouts/category_index.html')
-rw-r--r-- | source/_layouts/category_index.html | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/source/_layouts/category_index.html b/source/_layouts/category_index.html index 85a6307..7e64ebe 100644 --- a/source/_layouts/category_index.html +++ b/source/_layouts/category_index.html @@ -1,17 +1,16 @@ --- -layout: page -footer: false +layout: default --- -<div id="blog-archives" class="category"> {% for post in site.categories[page.category] %} -{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %} -{% unless year == this_year %} - {% assign year = this_year %} - <h2>{{ year }}</h2> -{% endunless %} -<article> - {% include archive_post.html %} -</article> +<section class="archive"> + {% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %} + {% unless year == this_year %} + {% assign year = this_year %} + <h1 class="archive-title">{{ year }}</h1> + {% endunless %} + <article class="archive"> + {% include archive_post.html %} + </article> +</section> {% endfor %} -</div> |