You cannot 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
457 B
HTML
17 lines
457 B
HTML
![]()
2 years ago
|
{% macro list_title(pages, tag_name=false) %}
|
||
|
{% if tag_name %}
|
||
|
<h1 class="title-container">Entries tagged - "{{ term.name }}"</h1>
|
||
|
{% else %}
|
||
|
<h1 class="page-title">All articles</h1>
|
||
|
{% endif %}
|
||
|
|
||
|
<ul class="posts">
|
||
|
{% for page in pages %}
|
||
|
<li class="post">
|
||
|
<a href="{{ page.permalink }}">{{ page.title }}</a>
|
||
|
<span class="meta">{{ macros_format_date::format_date(date=page.date) }}</span>
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% endmacro list_title %}
|