Files
lektor-groupby-plugin/examples/templates/example-config.html
2022-03-31 04:20:01 +02:00

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>