List articles with a taxonomy
parent
48a3c865e5
commit
bf45bf9cdc
@ -0,0 +1,15 @@
|
||||
{% extends "index.html" %}
|
||||
|
||||
{% block title %}
|
||||
{{ term.name | capitalize }} – {{ config.title }}
|
||||
{% endblock title %}
|
||||
|
||||
{% block content %}
|
||||
<h1>{{ term.name | capitalize }}</h1>
|
||||
<hr>
|
||||
|
||||
{% for page in term.pages %}
|
||||
{{ macros::list_article(page=page) }}
|
||||
{% endfor %}
|
||||
|
||||
{% endblock content %}
|
@ -0,0 +1,15 @@
|
||||
{% extends "index.html" %}
|
||||
|
||||
{% block title %}
|
||||
{{ term.name | capitalize }} – {{ config.title }}
|
||||
{% endblock title %}
|
||||
|
||||
{% block content %}
|
||||
<h1>{{ term.name | capitalize }}</h1>
|
||||
<hr>
|
||||
|
||||
{% for page in term.pages %}
|
||||
{{ macros::list_article(page=page) }}
|
||||
{% endfor %}
|
||||
|
||||
{% endblock content %}
|
Loading…
Reference in New Issue