Official Landing Page https://www.gnusocial.rocks/
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.
 
 
 
 
 
 

18 lines
358 B

  1. ---
  2. layout: default
  3. ---
  4. <div class="md">
  5. {% for category in site.categories %}
  6. <h1>{{ category[0] }}</h1>
  7. <ul>
  8. {% for post in category[1] %}
  9. <h3>
  10. <li>
  11. <a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
  12. </li>
  13. </h3>
  14. {% endfor %}
  15. </ul>
  16. {% endfor %}
  17. </div>