9 lines
301 B
HTML
9 lines
301 B
HTML
<h2>Path: {{ this | url(absolute=True) }}</h2>
|
|
<p>This is: {{this}}</p>
|
|
<p>Group: "{{this.group}}", Key: "{{this.key}}"</p>
|
|
<p>Custom field title: {{this.title}}</p>
|
|
<ul>
|
|
{%- for child in this.children %}
|
|
<li>Child: <a href="{{child|url}}">{{child.title}}</a> ({{child.path}})</li>
|
|
{%- endfor %}
|
|
</ul> |