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.
|
- ---
- layout: default
- ---
-
- <div class="md">
- {% for category in site.categories %}
- <h1>{{ category[0] }}</h1>
- <ul>
- {% for post in category[1] %}
- <h3>
- <li>
- <a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
- </li>
- </h3>
- {% endfor %}
- </ul>
- {% endfor %}
- </div>
|