mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
Initial fixes for tests on Zelda branch
No issue - Adds embers declaration - Removes duplicate class in code injection
This commit is contained in:
parent
f6850e03f7
commit
b26c4d91d8
2 changed files with 3 additions and 2 deletions
|
@ -15,13 +15,13 @@
|
|||
<div class="form-group">
|
||||
<label for="ghost-head">Blog Header</label>
|
||||
<p>Code here will be injected into the <code>\{{ghost_head}}</code> tag on every page of your blog</p>
|
||||
{{gh-cm-editor id="ghost-head" class="gh-input" name="codeInjection[ghost_head]" class="settings-code-editor" type="text" value=model.ghost_head}}
|
||||
{{gh-cm-editor id="ghost-head" class="gh-input settings-code-editor" name="codeInjection[ghost_head]" type="text" value=model.ghost_head}}
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="ghost-foot">Blog Footer</label>
|
||||
<p>Code here will be injected into the <code>\{{ghost_foot}}</code> tag on every page of your blog</p>
|
||||
{{gh-cm-editor id="ghost-foot" class="gh-input" name="codeInjection[ghost_foot]" class="settings-code-editor" type="text" value=model.ghost_foot}}
|
||||
{{gh-cm-editor id="ghost-foot" class="gh-input settings-code-editor" name="codeInjection[ghost_foot]" type="text" value=model.ghost_foot}}
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
import Ember from 'ember';
|
||||
import BaseView from 'ghost/views/settings/content-base';
|
||||
|
||||
var SettingsUserView = BaseView.extend({
|
||||
|
|
Loading…
Add table
Reference in a new issue