Only print page info when there is date available
Useful for sub-pages which do not necessarily have such metadata.
This commit is contained in:
parent
775a43dad2
commit
1ca0c21e98
@ -17,10 +17,12 @@
|
||||
{% endmacro %}
|
||||
|
||||
{% macro page_info(page) %}
|
||||
<div class="info">
|
||||
<span class="date">{{ page.date }}</span>
|
||||
{%- if page.extra.author -%}
|
||||
, <span class="author">{{ page.extra.author }}</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% if page.date %}
|
||||
<div class="info">
|
||||
<span class="date">{{ page.date }}</span>
|
||||
{%- if page.extra.author -%}
|
||||
, <span class="author">{{ page.extra.author }}</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endmacro %}
|
||||
|
Loading…
Reference in New Issue
Block a user