Code injection

{{gh-task-button task=save class="gh-btn gh-btn-blue gh-btn-icon" data-test-save-button=true}}
{{#if showLeaveSettingsModal}} {{gh-fullscreen-modal "leave-settings" confirm=(action "leaveSettings") close=(action "toggleLeaveSettingsModal") modifier="action wide"}} {{/if}}

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.

Code here will be injected into the \{{ghost_head}} tag on every page of your blog

{{gh-cm-editor settings.ghostHead id="ghost-head" class="gh-input settings-code-editor" name="codeInjection[ghost_head]" type="text" update=(action (mut settings.ghostHead))}}

Code here will be injected into the \{{ghost_foot}} tag on every page of your blog

{{gh-cm-editor settings.ghostFoot id="ghost-foot" class="gh-input settings-code-editor" name="codeInjection[ghost_foot]" type="text" update=(action (mut settings.ghostFoot))}}