forked from projects/fipamo
3f9506ac6b
Cleaned up resonsive for the rest of the remaining pages: the dash index, page index, page editor, navigation editor and plugged in a mobile nav that activates when the viewport gets skinny. Whew.
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>
|