9 lines
306 B
HTML
9 lines
306 B
HTML
<h2>Path: {{ this | url(absolute=True) }}</h2>
|
|
<p>This is: {{this}}</p>
|
|
<p>Object: "{{this.key_obj}}", 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> |