9 lines
301 B
HTML
9 lines
301 B
HTML
<h2>Path: {{ this | url(absolute=True) }}</h2>
|
|
<p>This is: {{this}}</p>
|
|
<p>Custom field date: {{this.date}}</p>
|
|
<ul>
|
|
{%- for child, extras in this.children.items() -%}
|
|
{%- set etxra = (extras|first).tags_in_page %}
|
|
<li>{{etxra|length}} tags on page "{{child.path}}": {{etxra}}</li>
|
|
{%- endfor %}
|
|
</ul> |