mirror of
https://github.com/pawroman/zola-theme-terminimal.git
synced 2025-04-28 10:47:11 +02:00
Added the option to only show the description
Since the Hugo Theme only shows the description, what I prefer, I added this option here as well.
This commit is contained in:
parent
0cc423545a
commit
8f51f3343b
|
@ -65,7 +65,11 @@
|
|||
{%- for page in show_pages %}
|
||||
<div class="post on-list">
|
||||
{{ post_macros::header(page=page) }}
|
||||
{%- if config.extra.show_only_description %}
|
||||
{{ page.description}}
|
||||
{% else %}
|
||||
{{ post_macros::content(page=page, summary=true) }}
|
||||
{% endif -%}
|
||||
</div>
|
||||
{% endfor -%}
|
||||
<div class="pagination">
|
||||
|
|
Loading…
Reference in a new issue