mirror of
https://github.com/pawroman/zola-theme-terminimal.git
synced 2025-01-09 12:11:05 +01:00
Skip draft pages in archive
This commit is contained in:
parent
4848ae1c72
commit
0577f22e54
|
@ -70,6 +70,9 @@
|
|||
{% macro list_posts(pages) %}
|
||||
<ul>
|
||||
{%- for page in pages %}
|
||||
{%- if page.draft %}
|
||||
{% continue %}
|
||||
{% endif -%}
|
||||
<li class="post-list">
|
||||
<a href="{{ page.permalink }}">
|
||||
<span class="post-date">{{ page.date }}</span>
|
||||
|
|
Loading…
Reference in a new issue