2023-09-08 21:49:57 +01:00
|
|
|
{{ page.content }}
|
|
|
|
|
2023-09-08 22:10:52 +01:00
|
|
|
Nav: {{ nav }}
|
|
|
|
|
|
|
|
Parent: {{ page.parent }}
|
2023-09-15 18:19:06 +01:00
|
|
|
Custom parent: {{ get_parent_page(page) }}
|
2023-09-08 22:10:52 +01:00
|
|
|
Section: {{ page.is_section }}
|
|
|
|
|
|
|
|
Is lits page: {{ page|is_list_page }}
|
|
|
|
|
2023-09-08 22:32:51 +01:00
|
|
|
Children: {{ page|children }}
|
2023-09-09 10:56:04 +01:00
|
|
|
|
|
|
|
{% set tag_1_page = get_page('tags/tag1.md') %}
|
|
|
|
|
|
|
|
Found page: {{ tag_1_page }}
|
2023-09-09 12:05:16 +01:00
|
|
|
|
2023-09-14 22:02:40 +01:00
|
|
|
URL: {{ get_page_url("tags/tag1.md") }}
|
|
|
|
|
2023-09-09 12:05:16 +01:00
|
|
|
Image resized: {{ "./assets/test.jpg"|resize_image(1500) }}
|
2023-09-13 21:23:43 +01:00
|
|
|
|
|
|
|
Globals: {{ globals.foo }}
|
2023-09-15 22:29:43 +01:00
|
|
|
|
|
|
|
Static path: {% static "assets/pygments.css" %}
|
|
|
|
SRI: {% sri_integrity "assets/pygments.css" %}
|
2023-09-25 22:20:55 +01:00
|
|
|
|
2023-09-25 22:56:26 +01:00
|
|
|
"Latest" list: {{ get_page("list/index.md")|children|max(attribute="title") }}
|