8 lines
227 B
HTML
8 lines
227 B
HTML
<h2>Path: {{ this | url(absolute=True) }}</h2>
|
|
<p>This is: {{this}}</p>
|
|
<p>Custom field date: {{this.date}}</p>
|
|
<ul>
|
|
{%- for child in this.children %}
|
|
<li>page "{{child.path}}" with tags: {{child.tags}}</li>
|
|
{%- endfor %}
|
|
</ul> |