Sources du blog ALLELLA
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

26 lines
632 B

  1. ---
  2. layout: page
  3. permalink: /categories/
  4. title: Categories
  5. exclude: true
  6. ---
  7. <div id="archives">
  8. {% for category in site.categories %}
  9. <div class="archive-group">
  10. {% capture category_name %}{{ category | first }}{% endcapture %}
  11. <div id="#{{ category_name | slugize }}"></div>
  12. <p></p>
  13. <h3 class="category-head">{{ category_name }}</h3>
  14. <a name="{{ category_name | slugize }}"></a>
  15. {% for post in site.categories[category_name] %}
  16. <article class="archive-item">
  17. <h4><a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a></h4>
  18. </article>
  19. {% endfor %}
  20. </div>
  21. {% endfor %}
  22. </div>