2022-11-03 21:46:36 +01:00
|
|
|
{% if page.menu == 'true' %}
|
|
|
|
{% set menu = "true" %}
|
|
|
|
{% else %}
|
|
|
|
{% set menu = "false" %}
|
|
|
|
{% endif %}
|
|
|
|
{% if page.published == 'true' %}
|
|
|
|
{% set published = "true" %}
|
|
|
|
{% else %}
|
|
|
|
{% set published = "false" %}
|
|
|
|
{% endif %}
|
|
|
|
{% if page.featured == 'true' %}
|
|
|
|
{% set featured = "true" %}
|
|
|
|
{% else %}
|
|
|
|
{% set featured = "false" %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<aside>
|
|
|
|
<strong>
|
|
|
|
{{ page.updated }}
|
|
|
|
</strong>
|
|
|
|
<hr/>
|
|
|
|
<strong>
|
|
|
|
{{ page.title }}
|
|
|
|
</strong>
|
|
|
|
<hr/>
|
|
|
|
<button data-active="{{ menu }}">
|
2023-04-05 23:40:14 +02:00
|
|
|
<i class="ti ti-navigation"></i>
|
2022-11-03 21:46:36 +01:00
|
|
|
</button>
|
|
|
|
<button data-active="{{ published }}">
|
2023-04-05 23:40:14 +02:00
|
|
|
<i class="ti ti-world"></i>
|
2022-11-03 21:46:36 +01:00
|
|
|
</button>
|
|
|
|
|
|
|
|
<button data-active="{{ featured }}">
|
2023-04-05 23:40:14 +02:00
|
|
|
<i class="ti ti-star"></i>
|
2022-11-03 21:46:36 +01:00
|
|
|
</button>
|
|
|
|
|
|
|
|
</aside>
|