mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
b26c4d91d8
No issue - Adds embers declaration - Removes duplicate class in code injection
28 lines
1.4 KiB
Handlebars
28 lines
1.4 KiB
Handlebars
<header class="view-header">
|
|
<h2 class="view-title">Code Injection</h2>
|
|
<section class="view-actions">
|
|
<button type="button" class="btn btn-blue" {{action "save"}}>Save</button>
|
|
</section>
|
|
</header>
|
|
|
|
<section class="view-content">
|
|
<form id="settings-code" novalidate="novalidate">
|
|
<fieldset>
|
|
<p>
|
|
Ghost allows you to inject code into the top and bottom of your theme files without editing them. This allows for quick modifications to insert useful things like tracking codes and meta tags.
|
|
</p>
|
|
|
|
<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 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 settings-code-editor" name="codeInjection[ghost_foot]" type="text" value=model.ghost_foot}}
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
</section>
|