25 lines
815 B
Twig
25 lines
815 B
Twig
<h2>Sitemap</h2>
|
|
|
|
<div class="form-group">
|
|
<label for="path">Path:</label>
|
|
<input type="text" id="path" name="path" value="{{ rows.path }}">
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="changefreq">Change Frequency:</label>
|
|
<select id="changefreq" name="changefreq">
|
|
{% set freqs = ['always', 'hourly', 'daily', 'weekly', 'monthly', 'yearly', 'never'] %}
|
|
{% for freq in freqs %}
|
|
<option value="{{ freq }}" {% if rows.changefreq == freq %}selected{% endif %}>
|
|
{{ freq|capitalize }}
|
|
</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="priority">Priority (0.0 - 1.0):</label>
|
|
<input type="number" id="priority" name="priority" value="{{ rows.priority }}" step="0.1" min="0" max="1">
|
|
</div>
|
|
|
|
|