|
|
|
@ -17,30 +17,33 @@
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
<div id="post-options">
|
|
|
|
|
<button id="option-menu-pin" class="option-inactive post-option-btn" data-active="{{ menu }}" title='Pin to Menu'>
|
|
|
|
|
<svg id="option-page-icon" viewbox="0 0 20 20" class="icons">
|
|
|
|
|
<use id="option-page-icon" xlink:href="/assets/images/global/sprite.svg#entypo-add-to-list"/>
|
|
|
|
|
</svg>
|
|
|
|
|
</button>
|
|
|
|
|
<button id="option-feature" class="option-inactive post-option-btn" data-active="{{ featured }}" title='Feature'>
|
|
|
|
|
<svg id="option-feature-icon" viewbox="0 0 20 20" class="icons">
|
|
|
|
|
<use id="option-feature-icon" xlink:href="/assets/images/global/sprite.svg#entypo-star"/>
|
|
|
|
|
</svg>
|
|
|
|
|
</button>
|
|
|
|
|
<button id="option-published" class="option-inactive post-option-btn" data-active="{{ published }}" title='Published'>
|
|
|
|
|
<svg id="option-published-icon" viewbox="0 0 20 20" class="icons">
|
|
|
|
|
<use id="option-published-icon" xlink:href="/assets/images/global/sprite.svg#entypo-eye"/>
|
|
|
|
|
</svg>
|
|
|
|
|
</button>
|
|
|
|
|
<label>View Template</label>
|
|
|
|
|
<select>
|
|
|
|
|
{% for view in views %}
|
|
|
|
|
{% if view == page['layout'] %}
|
|
|
|
|
<option value={{ view }} selected>{{ view }}</option>
|
|
|
|
|
{% else %}
|
|
|
|
|
<option value={{ view }}>{{ view }}</option>
|
|
|
|
|
{% endif %}
|
|
|
|
|
<button id="option-menu-pin" class="option-inactive post-option-btn" data-active="{{ menu }}" title='Pin to Menu'>
|
|
|
|
|
<svg id="option-page-icon" viewbox="0 0 20 20" class="icons">
|
|
|
|
|
<use id="option-page-icon" xlink:href="/assets/images/global/sprite.svg#entypo-add-to-list"/>
|
|
|
|
|
</svg>
|
|
|
|
|
</button>
|
|
|
|
|
<button id="option-feature" class="option-inactive post-option-btn" data-active="{{ featured }}" title='Feature'>
|
|
|
|
|
<svg id="option-feature-icon" viewbox="0 0 20 20" class="icons">
|
|
|
|
|
<use id="option-feature-icon" xlink:href="/assets/images/global/sprite.svg#entypo-star"/>
|
|
|
|
|
</svg>
|
|
|
|
|
</button>
|
|
|
|
|
<button id="option-published" class="option-inactive post-option-btn" data-active="{{ published }}" title='Published'>
|
|
|
|
|
<svg id="option-published-icon" viewbox="0 0 20 20" class="icons">
|
|
|
|
|
<use id="option-published-icon" xlink:href="/assets/images/global/sprite.svg#entypo-eye"/>
|
|
|
|
|
</svg>
|
|
|
|
|
</button>
|
|
|
|
|
<div id="layouts">
|
|
|
|
|
<label>Page Layouts</label>
|
|
|
|
|
<select id="page-templates">
|
|
|
|
|
{% for view in views %}
|
|
|
|
|
{% if view == page['layout'] %}
|
|
|
|
|
<option value={{ view }} selected>{{ view }}</option>
|
|
|
|
|
{% else %}
|
|
|
|
|
<option value={{ view }}>{{ view }}</option>
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|