Files
lektor-groupby-plugin/examples/templates/example-config.html
2022-12-20 01:28:12 +01:00

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>