mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 05:50:35 +03:00
17 lines
556 B
Handlebars
17 lines
556 B
Handlebars
<div class="gh-stack-item {{if (eq @index 0) "gh-setting-first" "gh-setting"}}">
|
|
<div class="flex-grow-1">
|
|
<label class="gh-setting-title gh-theme-setting-title" for={{this.inputId}}>
|
|
{{humanize-setting-key @setting.key}}
|
|
</label>
|
|
|
|
<input
|
|
type="text"
|
|
class="gh-input"
|
|
value={{@setting.value}}
|
|
id={{this.inputId}}
|
|
name={{this.inputName}}
|
|
{{on "input" this.updateValue}}
|
|
{{on "blur" this.triggerOnChange}}
|
|
/>
|
|
</div>
|
|
</div> |