9 lines
203 B
HTML
9 lines
203 B
HTML
|
|
{% for page in site.pages %}
|
|
{% if (page.categories | first) == "crapaud" %}
|
|
<div>{{ page.categories | first }}</div>
|
|
<div><a href="{{ page.url }}">{{ page.title }}</a></div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
|