Files
lektor-groupby-plugin/examples/templates/example-simple.html
2022-08-03 08:17:26 +02:00

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>