7 lines
205 B
HTML
7 lines
205 B
HTML
<h2>Path: {{ this | url(absolute=True) }}</h2>
|
|
<div>This is: {{this}}</div>
|
|
<ul>
|
|
{%- for child, extras in this.children.items() %}
|
|
<li>Page: {{ child.path }}, Tags: {{ extras }}</li>
|
|
{%- endfor %}
|
|
</ul> |