mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
b8a1036a43
closes TryGhost/Ghost#8107 - replaces all icons in Ghost-Admin with SVGs by using our new helper {{inline-svg}}. - removes all ghosticon fonts. This is the second and final batch of the refactor.
17 lines
558 B
Handlebars
17 lines
558 B
Handlebars
<span class="gh-select" data-select-text="{{selectedTimezone.label}}" tabindex="0">
|
|
{{one-way-select
|
|
id="activeTimezone"
|
|
name="general[activeTimezone]"
|
|
options=selectableTimezones
|
|
optionValuePath="name"
|
|
optionLabelPath="label"
|
|
value=selectedTimezone
|
|
update=(action "setTimezone")
|
|
}}
|
|
{{inline-svg "arrow-down-small"}}
|
|
</span>
|
|
{{#if hasTimezoneOverride}}
|
|
<p>Your timezone has been automatically set to {{activeTimezone}}.</p>
|
|
{{/if}}
|
|
<p>The local time here is currently {{localTime}}</p>
|