mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 11:34:24 +03:00
2c498ab193
Refs https://www.notion.so/ghost/Switch-breadcrumb-style-513a624c0e0d490ca39a2fdb97a6971a - Separating out the breadcrumbs and the title makes it easier to navigate back on multiple levels for nested pages. - Avoids very long titles, as it doesn't include breadcrumbs anymore
33 lines
1.1 KiB
Handlebars
33 lines
1.1 KiB
Handlebars
<section class="gh-canvas gh-setting-email">
|
|
<GhCanvasHeader class="gh-canvas-header">
|
|
<div class="flex flex-column">
|
|
<div class="gh-canvas-breadcrumb">
|
|
<LinkTo @route="settings">
|
|
Settings
|
|
</LinkTo>
|
|
{{svg-jar "arrow-right-small"}} Email newsletter
|
|
</div>
|
|
<h2 class="gh-canvas-title" data-test-screen-title>
|
|
Email newsletter
|
|
</h2>
|
|
</div>
|
|
<section class="view-actions">
|
|
<GhTaskButton
|
|
@buttonText="Save"
|
|
@task={{this.saveSettings}}
|
|
@successText="Saved"
|
|
@runningText="Saving"
|
|
@class="gh-btn gh-btn-primary gh-btn-icon"
|
|
{{on-key "cmd+s"}}
|
|
data-test-button="save-members-settings"
|
|
/>
|
|
</section>
|
|
</GhCanvasHeader>
|
|
|
|
<section class="view-container settings-debug">
|
|
<div class="gh-setting-liquid-section">
|
|
<Settings::Newsletters />
|
|
</div>
|
|
</section>
|
|
</section>
|