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