Added additional themes
This commit is contained in:
@@ -233,7 +233,7 @@
|
||||
</label>
|
||||
<select id="theme" data-setting="theme">
|
||||
{% for choice in theme_choices %}
|
||||
<option value="{{ choice }}" {% if settings.theme == choice %}selected{% endif %}>{{ choice|capitalize }}</option>
|
||||
<option value="{{ choice }}" {% if settings.theme == choice %}selected{% endif %}>{{ theme_display_names[choice] }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
</div>
|
||||
@@ -276,7 +276,7 @@
|
||||
</label>
|
||||
<select id="font_family" data-setting="font_family">
|
||||
{% for choice in font_family_choices %}
|
||||
<option value="{{ choice }}" {% if settings.font_family == choice %}selected{% endif %}>{{ choice|capitalize }}</option>
|
||||
<option value="{{ choice }}" {% if settings.font_family == choice %}selected{% endif %}>{{ 'Monaspace' if choice == 'monaspace' else choice|capitalize }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user