43 lines
1.5 KiB
Twig
43 lines
1.5 KiB
Twig
{% extends "layouts" ~ DIR ~ "default.twig" %}
|
|
|
|
{% block title %}{{ "Lightbox Settings" | translate("lightbox") }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>{{ "Lightbox Settings" | translate("lightbox") }}</h2>
|
|
<form id="lightbox_settings" class="split" action="{{ url('lightbox_settings') }}" method="post" accept-charset="UTF-8">
|
|
<fieldset role="presentation">
|
|
<p>
|
|
<label for="lightbox_background">{{ "Background" | translate("lightbox") }}</label>
|
|
{#- -#}
|
|
<select name="background" id="lightbox_background">
|
|
{% for key, val in lightbox_background %}
|
|
<option value="{{ key }}"{{ key | selected(site.module_lightbox['background']) }}>
|
|
{{ val }}
|
|
</option>
|
|
{% endfor %}
|
|
</select>
|
|
</p>
|
|
<p>
|
|
<label for="lightbox_spacing">{{ "Edge Spacing" | translate("lightbox") }}</label>
|
|
{#- -#}
|
|
<input class="text digits" type="number" min="0" name="spacing" value="{{ site.module_lightbox['spacing'] | fix(true) }}" size="2" id="lightbox_spacing">
|
|
<span class="sub">{{ "(pixels)" | translate("lightbox") }}</span>
|
|
</p>
|
|
<p>
|
|
<label for="lightbox_protect">{{ "Protect Images" | translate("lightbox") }}</label>
|
|
{#- -#}
|
|
<input type="checkbox" class="checkbox" name="protect" id="lightbox_protect"{{ site.module_lightbox['protect'] | checked }}>
|
|
<small>
|
|
{{ "Prevent visitors from saving images?" | translate("lightbox") }}
|
|
</small>
|
|
</p>
|
|
<p class="buttons">
|
|
<button type="submit" class="yay">
|
|
{{ "Update" | translate }}
|
|
</button>
|
|
</p>
|
|
<input type="hidden" name="hash" value="{{ authenticate() }}" id="hash">
|
|
</fieldset>
|
|
</form>
|
|
{% endblock %}
|