2017-02-17 08:50:07 +03:00
<section class="gh-canvas">
2019-06-18 13:47:21 +03:00
<GhCanvasHeader class="gh-canvas-header">
<h2 class="gh-canvas-title" data-test-screen-title>
Code injection
</h2>
2015-06-13 17:34:09 +03:00
<section class="view-actions">
2017-04-07 18:23:45 +03:00
{{ gh-task-button task = save class = "gh-btn gh-btn-blue gh-btn-icon" data-test-save-button = true }}
2015-06-13 17:34:09 +03:00
</section>
2019-06-18 13:47:21 +03:00
</GhCanvasHeader>
2014-07-31 23:36:20 +04:00
2017-10-31 18:27:25 +03:00
{{ # if showLeaveSettingsModal }}
{{ gh-fullscreen-modal "leave-settings"
confirm=(action "leaveSettings")
close=(action "toggleLeaveSettingsModal")
modifier="action wide"}}
{{ / if }}
2019-06-18 13:47:21 +03:00
<section class="view-container">
2015-06-13 17:34:09 +03:00
<form id="settings-code" novalidate="novalidate">
<fieldset>
2019-06-18 13:47:21 +03:00
<p class="gh-box gh-box-info">
{{ svg-jar "idea" }}
2015-06-13 17:34:09 +03:00
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>
2014-07-31 23:36:20 +04:00
2019-06-18 13:47:21 +03:00
<div class="br3 shadow-1 bg-grouped-table pa5 pt3 pb1">
<div class="form-group settings-code">
<label for="ghost-head">Site Header</label>
<p>Code here will be injected into the <code>\ {{ ghost_head }} </code> tag on every page of the site</p>
{{ gh-cm-editor settings .codeinjectionHead id = "ghost-head" class = "gh-input settings-code-editor" name = "codeInjection[ghost_head]" type = "text" update = ( action ( mut settings .codeinjectionHead ) ) }}
</div>
2014-07-31 23:36:20 +04:00
2019-06-18 13:47:21 +03:00
<div class="form-group settings-code">
<label for="ghost-foot">Site Footer</label>
<p>Code here will be injected into the <code>\ {{ ghost_foot }} </code> tag on every page of the site</p>
{{ gh-cm-editor settings .codeinjectionFoot id = "ghost-foot" class = "gh-input settings-code-editor" name = "codeInjection[ghost_foot]" type = "text" update = ( action ( mut settings .codeinjectionFoot ) ) }}
</div>
2015-06-13 17:34:09 +03:00
</div>
</fieldset>
</form>
</section>
2014-07-31 23:36:20 +04:00
</section>