8 lines
158 B
HTML
8 lines
158 B
HTML
|
|
{% for page in site.pages %}
|
|
{% if page.categories contains "crapaud" %}
|
|
<div><a href="{{ page.url }}">{{ page.title }}</a></div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
|