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.
17 lines
464 B
17 lines
464 B
---
|
|
layout: default
|
|
---
|
|
|
|
<div id="main">
|
|
{% for page in site.pages %}
|
|
{% if page.title %}
|
|
<section>
|
|
<h1><a href={{page.url}}>{{page.title}}</a></h1>
|
|
{% assign posts = site.posts | where:'category', page.category %}
|
|
{% for post in posts %}
|
|
<a href={{post.url}}><h3> {{post.title}}</h3></a>
|
|
{% endfor %}
|
|
</section>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
|