mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
b167f0afd5
no issue - moves integration routes around to match ember's concept of nested routes (nested routes reflect nested UI not nested URLs) - sets us up for having a `settings.integrations.new` modal route that sits on top of the index screen
56 lines
2.1 KiB
Handlebars
56 lines
2.1 KiB
Handlebars
<section class="gh-canvas">
|
|
<header class="gh-canvas-header">
|
|
<h2 class="gh-canvas-title" data-test-screen-title>
|
|
{{#link-to "settings.integrations"}}Integrations{{/link-to}}
|
|
<span>{{svg-jar "arrow-right"}}</span>
|
|
AMP
|
|
</h2>
|
|
<section class="view-actions">
|
|
{{gh-task-button task=save class="gh-btn gh-btn-blue gh-btn-icon" data-test-save-button=true}}
|
|
</section>
|
|
</header>
|
|
|
|
{{#if showLeaveSettingsModal}}
|
|
{{gh-fullscreen-modal "leave-settings"
|
|
confirm=(action "leaveSettings")
|
|
close=(action "toggleLeaveSettingsModal")
|
|
modifier="action wide"}}
|
|
{{/if}}
|
|
|
|
<section class="view-container">
|
|
<br>
|
|
<section class="app-grid">
|
|
<div class="app-cell">
|
|
<img class="app-icon" src="assets/img/ampicon.png" />
|
|
</div>
|
|
<div class="app-cell">
|
|
<h3>AMP</h3>
|
|
<p>Accelerated Mobile Pages</p>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="gh-setting-header">AMP configuration</div>
|
|
<div class="gh-setting">
|
|
<div class="gh-setting-content">
|
|
<div class="gh-setting-title">Enable AMP</div>
|
|
<div class="gh-setting-desc">Enable <a href="https://ampproject.org" target="_blank">Google Accelerated Mobile Pages</a> for your posts</div>
|
|
</div>
|
|
<div class="gh-setting-action">
|
|
<div class="for-checkbox">
|
|
<label for="amp" class="checkbox">
|
|
<input
|
|
type="checkbox"
|
|
checked={{ampSettings}}
|
|
id="amp"
|
|
name="amp"
|
|
onclick={{action "update" value="target.checked"}}
|
|
data-test-amp-checkbox
|
|
>
|
|
<span class="input-toggle-component"></span>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</section>
|