You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
693 B
Twig
38 lines
693 B
Twig
{% 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 }}">
|
|
<i class="ti ti-navigation"></i>
|
|
</button>
|
|
<button data-active="{{ published }}">
|
|
<i class="ti ti-world"></i>
|
|
</button>
|
|
|
|
<button data-active="{{ featured }}">
|
|
<i class="ti ti-star"></i>
|
|
</button>
|
|
|
|
</aside>
|