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:
		@@ -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 %}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user