mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 20:03:12 +03:00
Restructured Audit log IA
refs. https://github.com/TryGhost/Toolbox/issues/356 - renamed page to “History” now to make it less technical - moved the history page out to the Advanced section in Settings to increase discoverability - moved the About section from General settings to a modal because that technical data was not connected to General settings
This commit is contained in:
parent
e0f86cb1cb
commit
cb644b3fd7
79
ghost/admin/app/components/modals/settings/about.hbs
Normal file
79
ghost/admin/app/components/modals/settings/about.hbs
Normal file
@ -0,0 +1,79 @@
|
||||
<div class="modal-content gh-about-modal">
|
||||
<header class="modal-header">
|
||||
<div class="gh-about-logo">
|
||||
{{svg-jar "ghost-logo-orb" alt="Ghost"}}
|
||||
</div>
|
||||
</header>
|
||||
<button type="button" class="close" title="Close" {{on "click" @close}}>{{svg-jar "close"}}<span class="hidden">Close</span></button>
|
||||
|
||||
<div class="modal-body">
|
||||
<div class="gh-about-box">
|
||||
{{#if this.upgradeStatus.message}}
|
||||
<section class="gh-upgrade-notification">
|
||||
<strong>Update available!</strong>
|
||||
<div>
|
||||
{{this.upgradeStatus.message}}
|
||||
</div>
|
||||
</section>
|
||||
{{/if}}
|
||||
<section class="gh-env-details gh-about-box grey">
|
||||
<ul class="gh-env-list">
|
||||
{{#if this.linkToGitHubReleases}}
|
||||
<li><strong>Version:</strong> <a href="https://github.com/TryGhost/Ghost/releases/tag/v{{this.config.version}}" target="_blank" rel="noopener noreferrer">{{this.config.version}}</a></li>
|
||||
{{else}}
|
||||
<li><strong>Version:</strong> {{this.config.version}}</li>
|
||||
{{/if}}
|
||||
{{#if this.showSystemInfo}}
|
||||
<li><strong>Environment:</strong> <span class="ttc">{{this.config.environment}}</span></li>
|
||||
<li class="gh-env-list-database-type"><strong>Database:</strong> {{this.config.database}}</li>
|
||||
<li><strong>Mail:</strong> {{#if this.config.mail}}{{this.config.mail}}{{else}}Native{{/if}}</li>
|
||||
{{/if}}
|
||||
{{#if (enable-developer-experiments)}}
|
||||
<li><strong>Developer experiments:</strong> <span class="gh-badge">Enabled</span></li>
|
||||
{{/if}}
|
||||
</ul>
|
||||
|
||||
{{#if (and this.showSystemInfo this.showDatabaseWarning)}}
|
||||
<div class="gh-env-error">
|
||||
You are running an unsupported database in production. Please <a href="https://ghost.org/docs/faq/supported-databases/" target="_blank" rel="noopener noreferrer">upgrade to MySQL 8</a>.
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
<ul class="gh-about-links">
|
||||
<li>
|
||||
<a href="https://ghost.org/docs/" target="_blank" rel="noopener noreferrer">
|
||||
<span>
|
||||
{{svg-jar "book-open" class="fill-middarkgrey hover-fill"}}
|
||||
User documentation
|
||||
</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://forum.ghost.org/" target="_blank" rel="noopener noreferrer">
|
||||
<span>
|
||||
{{svg-jar "help" class="stroke-middarkgrey hover-stroke"}}
|
||||
Get help with Ghost
|
||||
</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://ghost.org/docs/contributing/" target="_blank" rel="noopener noreferrer">
|
||||
<span>
|
||||
{{svg-jar "brackets" class="stroke-middarkgrey hover-stroke"}}
|
||||
Get involved
|
||||
</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<div class="gh-copyright-info">
|
||||
<div>
|
||||
Copyright © 2013 – {{this.copyrightYear}} Ghost Foundation, released under the <a href="https://github.com/TryGhost/Ghost/blob/master/LICENSE" target="_blank" rel="noopener noreferrer">MIT license</a>.
|
||||
</div>
|
||||
<div>
|
||||
<a href="https://ghost.org/" target="_blank" rel="noopener noreferrer">Ghost</a> is a registered trademark of <a href="https://ghost.org/trademark/" target="_blank" rel="noopener noreferrer">Ghost Foundation Ltd</a>.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
15
ghost/admin/app/components/modals/settings/about.js
Normal file
15
ghost/admin/app/components/modals/settings/about.js
Normal file
@ -0,0 +1,15 @@
|
||||
import Component from '@glimmer/component';
|
||||
import config from 'ghost-admin/config/environment';
|
||||
import {inject as service} from '@ember/service';
|
||||
|
||||
export default class AboutModal extends Component {
|
||||
@service config;
|
||||
@service upgradeStatus;
|
||||
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
if (this.isTesting === undefined) {
|
||||
this.isTesting = config.environment === 'test';
|
||||
}
|
||||
}
|
||||
}
|
@ -1,3 +1,4 @@
|
||||
import AboutModal from '../components/modals/settings/about';
|
||||
import classic from 'ember-classic-decorator';
|
||||
import {action} from '@ember/object';
|
||||
import {inject as service} from '@ember/service';
|
||||
@ -8,6 +9,8 @@ import Controller from '@ember/controller';
|
||||
export default class SettingsController extends Controller {
|
||||
@service settings;
|
||||
@service session;
|
||||
@service modals;
|
||||
@service upgradeStatus;
|
||||
|
||||
showLeaveSettingsModal = false;
|
||||
|
||||
@ -21,4 +24,9 @@ export default class SettingsController extends Controller {
|
||||
this.settings.rollbackAttributes();
|
||||
this.set('showLeaveSettingsModal', false);
|
||||
}
|
||||
|
||||
@action
|
||||
openAbout() {
|
||||
this.advancedModal = this.modals.open(AboutModal);
|
||||
}
|
||||
}
|
||||
|
@ -3001,4 +3001,159 @@ p.theme-validation-details {
|
||||
font-size: 1.4rem !important;
|
||||
min-width: 130px;
|
||||
}
|
||||
}
|
||||
|
||||
/* About /ghost/settings/about/
|
||||
/* ---------------------------------------------------------- */
|
||||
.gh-about-logo svg {
|
||||
position: relative;
|
||||
width: 120px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.gh-about-logo {
|
||||
border-bottom: 1px solid var(--lightgrey-l2);
|
||||
padding-bottom: 10px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.gh-about-modal .gh-about-logo {
|
||||
margin: 4px 0 20px;
|
||||
border-bottom: none;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.gh-about-container {
|
||||
display: grid;
|
||||
grid-template-columns: 2fr 1fr;
|
||||
grid-gap: 80px;
|
||||
}
|
||||
|
||||
.gh-whats-new-canvas .gh-about-container {
|
||||
display: flex;
|
||||
grid-template-columns: unset;
|
||||
grid-gap: unset;
|
||||
margin: 0 auto;
|
||||
max-width: 920px;
|
||||
margin-top: 60px;
|
||||
}
|
||||
|
||||
.gh-about-box {
|
||||
position: sticky;
|
||||
top: 96px;
|
||||
right: 0;
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
flex-direction: column;
|
||||
height: max-content;
|
||||
border-radius: 3px;
|
||||
min-width: 300px;
|
||||
}
|
||||
|
||||
.gh-about-box.grey {
|
||||
border: none;
|
||||
background: var(--main-color-content-greybg);
|
||||
}
|
||||
|
||||
.gh-env-details {
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
flex-direction: column;
|
||||
padding: 24px 28px 28px;
|
||||
}
|
||||
|
||||
.gh-about-container h2 {
|
||||
font-size: 1.65rem;
|
||||
line-height: 1.4em;
|
||||
font-weight: 600;
|
||||
border-bottom: 1px solid var(--lightgrey-l2);
|
||||
padding-bottom: 12px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.gh-env-list {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.gh-env-list li {
|
||||
margin: 0 0 4px;
|
||||
font-size: 1.4rem;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
.gh-env-error {
|
||||
margin: 1.2rem 0;
|
||||
padding: 16px;
|
||||
line-height: 1.4em;
|
||||
border: none;
|
||||
background: color-mod(var(--red) a(6%));
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.gh-env-error a {
|
||||
color: var(--red);
|
||||
}
|
||||
|
||||
.gh-env-help {
|
||||
max-width: 200px;
|
||||
}
|
||||
|
||||
.gh-env-help .gh-btn {
|
||||
margin: 4px 0;
|
||||
}
|
||||
|
||||
@media (max-width: 670px) {
|
||||
.gh-env-details {
|
||||
flex-direction: column;
|
||||
}
|
||||
.gh-env-help {
|
||||
margin: 1em 0;
|
||||
max-width: none;
|
||||
}
|
||||
.gh-env-help .gh-btn {
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
||||
.gh-about-content-actions {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Upgrade
|
||||
/* ---------------------------------------------------------- */
|
||||
|
||||
.gh-upgrade-notification {
|
||||
padding-top: 1em;
|
||||
}
|
||||
|
||||
.gh-upgrade-notification a {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.gh-about-modal .gh-upgrade-notification {
|
||||
background: color-mod(var(--green) a(8%));
|
||||
padding: 24px 28px 24px;
|
||||
border-radius: 3px;
|
||||
margin-bottom: 28px;
|
||||
}
|
||||
|
||||
/* Copyright Info
|
||||
/* ---------------------------------------------------------- */
|
||||
|
||||
.gh-copyright-info {
|
||||
color: var(--midgrey);
|
||||
font-size: 1.3rem;
|
||||
border-top: 1px solid var(--lightgrey-l2);
|
||||
padding-top: 16px;
|
||||
margin-top: 16px;
|
||||
line-height: 1.45em;
|
||||
}
|
||||
|
||||
.gh-about-modal .gh-copyright-info {
|
||||
margin: 4px 0 8px;
|
||||
border-top: none;
|
||||
}
|
@ -1,141 +1,3 @@
|
||||
/* About /ghost/settings/about/
|
||||
/* ---------------------------------------------------------- */
|
||||
.gh-about-logo svg {
|
||||
position: relative;
|
||||
width: 120px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.gh-about-logo {
|
||||
border-bottom: 1px solid var(--lightgrey-l2);
|
||||
padding-bottom: 10px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.gh-about-container {
|
||||
display: grid;
|
||||
grid-template-columns: 2fr 1fr;
|
||||
grid-gap: 80px;
|
||||
}
|
||||
|
||||
.gh-whats-new-canvas .gh-about-container {
|
||||
display: flex;
|
||||
grid-template-columns: unset;
|
||||
grid-gap: unset;
|
||||
margin: 0 auto;
|
||||
max-width: 920px;
|
||||
margin-top: 60px;
|
||||
}
|
||||
|
||||
.gh-about-box {
|
||||
position: sticky;
|
||||
top: 96px;
|
||||
right: 0;
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
flex-direction: column;
|
||||
height: max-content;
|
||||
border-radius: 3px;
|
||||
min-width: 300px;
|
||||
}
|
||||
|
||||
.gh-about-box.grey {
|
||||
border: none;
|
||||
background: var(--main-color-content-greybg);
|
||||
}
|
||||
|
||||
.gh-env-details {
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
flex-direction: column;
|
||||
padding: 24px 28px 28px;
|
||||
}
|
||||
|
||||
.gh-about-container h2 {
|
||||
font-size: 1.65rem;
|
||||
line-height: 1.4em;
|
||||
font-weight: 600;
|
||||
border-bottom: 1px solid var(--lightgrey-l2);
|
||||
padding-bottom: 12px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.gh-env-list {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.gh-env-list li {
|
||||
margin: 0 0 4px;
|
||||
font-size: 1.4rem;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
.gh-env-error {
|
||||
margin: 1.2rem 0;
|
||||
padding: 16px;
|
||||
line-height: 1.4em;
|
||||
border: none;
|
||||
background: color-mod(var(--red) a(6%));
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.gh-env-error a {
|
||||
color: var(--red);
|
||||
}
|
||||
|
||||
.gh-env-help {
|
||||
max-width: 200px;
|
||||
}
|
||||
|
||||
.gh-env-help .gh-btn {
|
||||
margin: 4px 0;
|
||||
}
|
||||
|
||||
@media (max-width: 670px) {
|
||||
.gh-env-details {
|
||||
flex-direction: column;
|
||||
}
|
||||
.gh-env-help {
|
||||
margin: 1em 0;
|
||||
max-width: none;
|
||||
}
|
||||
.gh-env-help .gh-btn {
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
||||
.gh-about-content-actions {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Upgrade
|
||||
/* ---------------------------------------------------------- */
|
||||
|
||||
.gh-upgrade-notification {
|
||||
padding-top: 1em;
|
||||
}
|
||||
|
||||
.gh-upgrade-notification a {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* Copyright Info
|
||||
/* ---------------------------------------------------------- */
|
||||
|
||||
.gh-copyright-info {
|
||||
color: var(--midgrey);
|
||||
font-size: 1.3rem;
|
||||
border-top: 1px solid var(--lightgrey-l2);
|
||||
padding-top: 16px;
|
||||
margin-top: 16px;
|
||||
line-height: 1.45em;
|
||||
}
|
||||
|
||||
|
||||
/* What's new */
|
||||
/* ---------------------------------------------------------- */
|
||||
.gh-whats-new-canvas .gh-canvas-header-content {
|
||||
|
@ -802,4 +802,23 @@ Usage: CTA buttons grouped together horizontally.
|
||||
/* Conditional wording for mobile to save space */
|
||||
.gh-btn .gh-btn-text-hide-for-mobile {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.gh-btn-with-notification {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.gh-btn-notification-dot {
|
||||
position: absolute;
|
||||
top: -6px;
|
||||
right: -6px;
|
||||
display: block;
|
||||
content: "";
|
||||
width: 14px !important;
|
||||
height: 14px !important;
|
||||
background: var(--green);
|
||||
padding: 0 !important;
|
||||
margin: 0 !important;
|
||||
border-radius: 999px !important;
|
||||
border: 1px solid var(--main-bg-color);
|
||||
}
|
@ -3,6 +3,20 @@
|
||||
<h2 class="gh-canvas-title" data-test-screen-title>
|
||||
Settings
|
||||
</h2>
|
||||
{{#if (feature 'auditLog')}}
|
||||
<section class="view-actions">
|
||||
{{#if this.upgradeStatus.message}}
|
||||
<button type="button" class="gh-btn gh-btn-with-notification" {{on "click" (fn this.openAbout)}} data-tooltip="Update available!">
|
||||
<span>About Ghost</span>
|
||||
<span class="gh-btn-notification-dot green"></span>
|
||||
</button>
|
||||
{{else}}
|
||||
<button type="button" class="gh-btn gh-btn-with-notification" {{on "click" (fn this.openAbout)}}>
|
||||
<span>About Ghost</span>
|
||||
</button>
|
||||
{{/if}}
|
||||
</section>
|
||||
{{/if}}
|
||||
</GhCanvasHeader>
|
||||
|
||||
<section class="view-container">
|
||||
@ -76,12 +90,22 @@
|
||||
</LinkTo>
|
||||
|
||||
<LinkTo class="gh-setting-group" @route="settings.labs" data-test-nav="labs">
|
||||
<span class="pink">{{svg-jar "labs"}}</span>
|
||||
<span class="{{if (feature 'auditLog') "blue" "pink"}}">{{svg-jar "labs"}}</span>
|
||||
<div>
|
||||
<h4>Labs</h4>
|
||||
<p>Testing ground for new features</p>
|
||||
</div>
|
||||
</LinkTo>
|
||||
|
||||
{{#if (feature 'auditLog')}}
|
||||
<LinkTo class="gh-setting-group" @route="settings.audit-log" data-test-nav="labs">
|
||||
<span class="pink">{{svg-jar "calendar-stroke"}}</span>
|
||||
<div>
|
||||
<h4>History</h4>
|
||||
<p>View system event log</p>
|
||||
</div>
|
||||
</LinkTo>
|
||||
{{/if}}
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
|
@ -1,7 +1,9 @@
|
||||
<section class="gh-canvas gh-members-activity">
|
||||
<GhCanvasHeader class="gh-canvas-header">
|
||||
<h2 class="gh-canvas-title" data-test-screen-title>
|
||||
<LinkTo @route="settings.audit-log" @query={{reset-query-params "settings.audit-log"}} data-test-link="audit-log-back">Audit log</LinkTo>
|
||||
<LinkTo @route="settings">Settings</LinkTo>
|
||||
<span>{{svg-jar "arrow-right"}}</span>
|
||||
<LinkTo @route="settings.audit-log" @query={{reset-query-params "settings.audit-log"}} data-test-link="audit-log-back">History</LinkTo>
|
||||
{{#if this.userRecord}}
|
||||
<span>{{svg-jar "arrow-right"}}</span>
|
||||
<span class="truncate">{{or this.userRecord.name this.userRecord.email}}</span>
|
||||
|
@ -17,513 +17,430 @@
|
||||
@modifier="action wide" />
|
||||
{{/if}}
|
||||
|
||||
<div class="{{if (feature 'auditLog') "gh-general-settings"}}">
|
||||
<div>
|
||||
<div class="gh-main-section">
|
||||
<h4 class="gh-main-section-header small bn">Publication info</h4>
|
||||
<section class="gh-expandable">
|
||||
<div class="gh-expandable-block">
|
||||
<div class="gh-expandable-header">
|
||||
<div>
|
||||
<h4 class="gh-expandable-title">Title & description</h4>
|
||||
<p class="gh-expandable-description">The details used to identify your publication around the web</p>
|
||||
</div>
|
||||
<button type="button" class="gh-btn" {{action (toggle "pubInfoOpen" this)}} data-test-toggle-pub-info><span>{{if this.pubInfoOpen "Close" "Expand"}}</span></button>
|
||||
</div>
|
||||
<div class="gh-expandable-content">
|
||||
{{#liquid-if this.pubInfoOpen}}
|
||||
<div class="gh-setting-content-extended">
|
||||
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="title">
|
||||
<GhTextInput
|
||||
@value={{readonly this.settings.title}}
|
||||
@input={{action (mut this.settings.title) value="target.value"}}
|
||||
@focus-out={{action "validate" "title" target=this.settings}}
|
||||
data-test-title-input={{true}}
|
||||
/>
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="title" />
|
||||
<p>The name of your site</p>
|
||||
</GhFormGroup>
|
||||
|
||||
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="description" @class="description-container">
|
||||
<GhTextInput
|
||||
@value={{readonly this.settings.description}}
|
||||
@input={{action (mut this.settings.description) value="target.value"}}
|
||||
@focus-out={{action "validate" "description" target=this.settings}}
|
||||
data-test-description-input={{true}}
|
||||
/>
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="description"/>
|
||||
<p>Used in your theme, meta data and search results</p>
|
||||
</GhFormGroup>
|
||||
</div>
|
||||
{{/liquid-if}}
|
||||
<div>
|
||||
<div class="gh-main-section">
|
||||
<h4 class="gh-main-section-header small bn">Publication info</h4>
|
||||
<section class="gh-expandable">
|
||||
<div class="gh-expandable-block">
|
||||
<div class="gh-expandable-header">
|
||||
<div>
|
||||
<h4 class="gh-expandable-title">Title & description</h4>
|
||||
<p class="gh-expandable-description">The details used to identify your publication around the web</p>
|
||||
</div>
|
||||
<button type="button" class="gh-btn" {{action (toggle "pubInfoOpen" this)}} data-test-toggle-pub-info><span>{{if this.pubInfoOpen "Close" "Expand"}}</span></button>
|
||||
</div>
|
||||
<div class="gh-expandable-content">
|
||||
{{#liquid-if this.pubInfoOpen}}
|
||||
<div class="gh-setting-content-extended">
|
||||
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="title">
|
||||
<GhTextInput
|
||||
@value={{readonly this.settings.title}}
|
||||
@input={{action (mut this.settings.title) value="target.value"}}
|
||||
@focus-out={{action "validate" "title" target=this.settings}}
|
||||
data-test-title-input={{true}}
|
||||
/>
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="title" />
|
||||
<p>The name of your site</p>
|
||||
</GhFormGroup>
|
||||
|
||||
<div class="gh-expandable-block">
|
||||
<div class="gh-expandable-header">
|
||||
<div>
|
||||
<h4 class="gh-expandable-title">Site timezone</h4>
|
||||
<p class="gh-expandable-description">Set the time and date of your publication, used for all published posts</p>
|
||||
</div>
|
||||
<button type="button" class="gh-btn" {{action (toggle "timezoneOpen" this)}} data-test-toggle-timezone><span>{{if this.timezoneOpen "Close" "Expand"}}</span></button>
|
||||
</div>
|
||||
<div class="gh-expandable-content">
|
||||
{{#liquid-if this.timezoneOpen}}
|
||||
<div class="gh-setting-content-extended">
|
||||
<GhTimezoneSelect
|
||||
@timezone={{this.settings.timezone}}
|
||||
@availableTimezones={{this.availableTimezones}}
|
||||
@update={{action "setTimezone"}} />
|
||||
</div>
|
||||
{{/liquid-if}}
|
||||
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="description" @class="description-container">
|
||||
<GhTextInput
|
||||
@value={{readonly this.settings.description}}
|
||||
@input={{action (mut this.settings.description) value="target.value"}}
|
||||
@focus-out={{action "validate" "description" target=this.settings}}
|
||||
data-test-description-input={{true}}
|
||||
/>
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="description"/>
|
||||
<p>Used in your theme, meta data and search results</p>
|
||||
</GhFormGroup>
|
||||
</div>
|
||||
{{/liquid-if}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="gh-expandable-block">
|
||||
<div class="gh-expandable-header">
|
||||
<div>
|
||||
<h4 class="gh-expandable-title">Publication Language</h4>
|
||||
<p class="gh-expandable-description">Set the language/locale which is used on your site</p>
|
||||
</div>
|
||||
<button type="button" class="gh-btn" {{action (toggle "langOpen" this)}} data-test-toggle-lang><span>{{if this.langOpen "Close" "Expand"}}</span></button>
|
||||
</div>
|
||||
<div class="gh-expandable-content">
|
||||
{{#liquid-if this.langOpen}}
|
||||
<div class="gh-setting-content-extended">
|
||||
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="locale">
|
||||
<GhTextInput
|
||||
@value={{readonly this.settings.locale}}
|
||||
@input={{action (mut this.settings.locale) value="target.value"}}
|
||||
@focus-out={{action "validate" "locale" target=this.settings}}
|
||||
data-test-input="locale"
|
||||
/>
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="locale" />
|
||||
<p>Default: English (<strong>en</strong>); you can add translation files to your theme for <a href="https://ghost.org/docs/themes/helpers/translate/" target="_blank" rel="noopener noreferrer">any language</a></p>
|
||||
</GhFormGroup>
|
||||
</div>
|
||||
{{/liquid-if}}
|
||||
<div class="gh-expandable-block">
|
||||
<div class="gh-expandable-header">
|
||||
<div>
|
||||
<h4 class="gh-expandable-title">Site timezone</h4>
|
||||
<p class="gh-expandable-description">Set the time and date of your publication, used for all published posts</p>
|
||||
</div>
|
||||
<button type="button" class="gh-btn" {{action (toggle "timezoneOpen" this)}} data-test-toggle-timezone><span>{{if this.timezoneOpen "Close" "Expand"}}</span></button>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<div class="gh-main-section">
|
||||
<h4 class="gh-main-section-header small bn">Site meta settings</h4>
|
||||
<section class="gh-expandable">
|
||||
<div class="gh-expandable-block">
|
||||
<div class="gh-expandable-header">
|
||||
<div>
|
||||
<h4 class="gh-expandable-title">Meta data</h4>
|
||||
<p class="gh-expandable-description">Extra content for search engines</p>
|
||||
</div>
|
||||
<button type="button" class="gh-btn" {{action (toggle "metaDataOpen" this)}} data-test-toggle-meta><span>{{if this.metaDataOpen "Close" "Expand"}}</span></button>
|
||||
</div>
|
||||
<div class="gh-expandable-content">
|
||||
{{#liquid-if this.metaDataOpen}}
|
||||
<div class="gh-setting-content-extended">
|
||||
<div class="gh-seo-settings">
|
||||
<div class="gh-seo-settings-left flex-basis-1-2-m flex-basis-2-3-l">
|
||||
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="metaTitle">
|
||||
<label for="metaTitle">Meta title</label>
|
||||
<GhTextInput
|
||||
@id="metaTitle"
|
||||
@type="text"
|
||||
@placeholder={{truncate this.settings.title 70}}
|
||||
@value={{readonly this.settings.metaTitle}}
|
||||
@input={{action (mut this.settings.metaTitle) value="target.value"}}
|
||||
data-test-input="metaTitle"
|
||||
/>
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="metaTitle" data-test-error="metaTitle" />
|
||||
<p>Recommended: <b>70</b> characters. You’ve used <b>{{gh-count-down-characters this.settings.metaTitle 70}}</b></p>
|
||||
</GhFormGroup>
|
||||
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="metaDescription">
|
||||
<label for="metaDescription">Meta description</label>
|
||||
<GhTextarea
|
||||
@id="metaDescription"
|
||||
@type="text"
|
||||
@placeholder={{truncate this.settings.description 300}}
|
||||
@value={{readonly this.settings.metaDescription}}
|
||||
@input={{action (mut this.settings.metaDescription) value="target.value"}}
|
||||
data-test-input="metaDescription"
|
||||
/>
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="metaDescription" data-test-error="metaDescription" />
|
||||
<p>Recommended: <b>156</b> characters. You’ve used <b>{{gh-count-down-characters this.settings.metaDescription 156}}</b></p>
|
||||
</GhFormGroup>
|
||||
</div>
|
||||
<div class="flex-basis-1-2-m flex-basis-1-3-l">
|
||||
<label>Search engine result preview</label>
|
||||
<div class="gh-seo-container">
|
||||
<div class="gh-seo-preview">
|
||||
<div class="flex mb6">
|
||||
{{svg-jar "google"}}
|
||||
<div class="gh-seo-search-bar">{{svg-jar "google-search"}}</div>
|
||||
</div>
|
||||
<div class="gh-seo-preview-link">{{this.config.blogDomain}}</div>
|
||||
<div class="gh-seo-preview-title">{{or this.settings.metaTitle this.settings.title}}</div>
|
||||
<div class="gh-seo-preview-desc">
|
||||
{{truncate (or this.settings.metaDescription this.settings.description) 159}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{/liquid-if}}
|
||||
<div class="gh-expandable-content">
|
||||
{{#liquid-if this.timezoneOpen}}
|
||||
<div class="gh-setting-content-extended">
|
||||
<GhTimezoneSelect
|
||||
@timezone={{this.settings.timezone}}
|
||||
@availableTimezones={{this.availableTimezones}}
|
||||
@update={{action "setTimezone"}} />
|
||||
</div>
|
||||
{{/liquid-if}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="gh-expandable-block">
|
||||
<div class="gh-expandable-header">
|
||||
<div>
|
||||
<h4 class="gh-expandable-title">Twitter card</h4>
|
||||
<p class="gh-expandable-description">Customize structured data of your site for Twitter</p>
|
||||
</div>
|
||||
<button type="button" class="gh-btn" {{action (toggle "twitterCardOpen" this)}} data-test-toggle-twitter><span>{{if this.twitterCardOpen "Close" "Expand"}}</span></button>
|
||||
<div class="gh-expandable-block">
|
||||
<div class="gh-expandable-header">
|
||||
<div>
|
||||
<h4 class="gh-expandable-title">Publication Language</h4>
|
||||
<p class="gh-expandable-description">Set the language/locale which is used on your site</p>
|
||||
</div>
|
||||
<div class="gh-expandable-content">
|
||||
{{#liquid-if this.twitterCardOpen}}
|
||||
<button type="button" class="gh-btn" {{action (toggle "langOpen" this)}} data-test-toggle-lang><span>{{if this.langOpen "Close" "Expand"}}</span></button>
|
||||
</div>
|
||||
<div class="gh-expandable-content">
|
||||
{{#liquid-if this.langOpen}}
|
||||
<div class="gh-setting-content-extended">
|
||||
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="locale">
|
||||
<GhTextInput
|
||||
@value={{readonly this.settings.locale}}
|
||||
@input={{action (mut this.settings.locale) value="target.value"}}
|
||||
@focus-out={{action "validate" "locale" target=this.settings}}
|
||||
data-test-input="locale"
|
||||
/>
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="locale" />
|
||||
<p>Default: English (<strong>en</strong>); you can add translation files to your theme for <a href="https://ghost.org/docs/themes/helpers/translate/" target="_blank" rel="noopener noreferrer">any language</a></p>
|
||||
</GhFormGroup>
|
||||
</div>
|
||||
{{/liquid-if}}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<div class="gh-main-section">
|
||||
<h4 class="gh-main-section-header small bn">Site meta settings</h4>
|
||||
<section class="gh-expandable">
|
||||
<div class="gh-expandable-block">
|
||||
<div class="gh-expandable-header">
|
||||
<div>
|
||||
<h4 class="gh-expandable-title">Meta data</h4>
|
||||
<p class="gh-expandable-description">Extra content for search engines</p>
|
||||
</div>
|
||||
<button type="button" class="gh-btn" {{action (toggle "metaDataOpen" this)}} data-test-toggle-meta><span>{{if this.metaDataOpen "Close" "Expand"}}</span></button>
|
||||
</div>
|
||||
<div class="gh-expandable-content">
|
||||
{{#liquid-if this.metaDataOpen}}
|
||||
<div class="gh-setting-content-extended">
|
||||
<div class="gh-twitter-settings">
|
||||
<div class="gh-twitter-settings-left flex-basis-1-2-m flex-basis-2-3-l">
|
||||
<label>Twitter image</label>
|
||||
<GhFormGroup>
|
||||
<GhImageUploaderWithPreview
|
||||
@image={{this.settings.twitterImage}}
|
||||
@text="Add Twitter image"
|
||||
@allowUnsplash={{true}}
|
||||
@update={{action (mut this.settings.twitterImage)}}
|
||||
@remove={{action (mut this.settings.twitterImage) ""}}
|
||||
/>
|
||||
</GhFormGroup>
|
||||
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="twitterTitle">
|
||||
<label for="twitterTitle">Twitter title</label>
|
||||
<div class="gh-seo-settings">
|
||||
<div class="gh-seo-settings-left flex-basis-1-2-m flex-basis-2-3-l">
|
||||
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="metaTitle">
|
||||
<label for="metaTitle">Meta title</label>
|
||||
<GhTextInput
|
||||
@id="twitterTitle"
|
||||
@id="metaTitle"
|
||||
@type="text"
|
||||
@placeholder={{truncate this.settings.title 70}}
|
||||
@value={{readonly this.settings.twitterTitle}}
|
||||
@input={{action (mut this.settings.twitterTitle) value="target.value"}}
|
||||
data-test-input="twitterTitle"
|
||||
@value={{readonly this.settings.metaTitle}}
|
||||
@input={{action (mut this.settings.metaTitle) value="target.value"}}
|
||||
data-test-input="metaTitle"
|
||||
/>
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="twitterTitle" data-test-error="twitterTitle" />
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="metaTitle" data-test-error="metaTitle" />
|
||||
<p>Recommended: <b>70</b> characters. You’ve used <b>{{gh-count-down-characters this.settings.metaTitle 70}}</b></p>
|
||||
</GhFormGroup>
|
||||
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="twitterDescription">
|
||||
<label for="twitterDescription">Twitter description</label>
|
||||
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="metaDescription">
|
||||
<label for="metaDescription">Meta description</label>
|
||||
<GhTextarea
|
||||
@id="twitterDescription"
|
||||
@id="metaDescription"
|
||||
@type="text"
|
||||
@placeholder={{truncate this.settings.description 300}}
|
||||
@value={{readonly this.settings.twitterDescription}}
|
||||
@input={{action (mut this.settings.twitterDescription) value="target.value"}}
|
||||
data-test-input="twitterDescription"
|
||||
@value={{readonly this.settings.metaDescription}}
|
||||
@input={{action (mut this.settings.metaDescription) value="target.value"}}
|
||||
data-test-input="metaDescription"
|
||||
/>
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="twitterDescription" data-test-error="twitterDescription" />
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="metaDescription" data-test-error="metaDescription" />
|
||||
<p>Recommended: <b>156</b> characters. You’ve used <b>{{gh-count-down-characters this.settings.metaDescription 156}}</b></p>
|
||||
</GhFormGroup>
|
||||
</div>
|
||||
<div class="flex-basis-1-2-m flex-basis-1-3-l">
|
||||
<label>Twitter preview</label>
|
||||
<div class="gh-twitter-container">
|
||||
<div class="flex ma4">
|
||||
<span>{{svg-jar "social-twitter" class="social-icon"}}</span>
|
||||
<div class="w-100">
|
||||
<span class="gh-social-og-title">{{or this.settings.metaTitle this.settings.title}}</span>
|
||||
<span class="gh-social-og-time">12 hrs</span>
|
||||
<div class="flex flex-column mt2 mb3">
|
||||
<span class="gh-social-og-desc w-100 mb2" />
|
||||
<span class="gh-social-og-desc w-60" />
|
||||
</div>
|
||||
<div class="gh-social-twitter-post-preview">
|
||||
{{#if this.settings.twitterImage}}
|
||||
<div class="gh-social-twitter-preview-image" style={{background-image-style this.settings.twitterImage}}></div>
|
||||
{{/if}}
|
||||
<div class="gh-social-twitter-preview-content">
|
||||
<div class="gh-social-twitter-preview-title">{{or this.settings.twitterTitle this.settings.title}}</div>
|
||||
<div class="gh-social-twitter-preview-desc">{{truncate (or this.settings.twitterDescription this.settings.description)}}</div>
|
||||
<div class="gh-social-twitter-preview-meta">
|
||||
{{svg-jar "twitter-link"}}
|
||||
{{this.config.blogDomain}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="gh-social-twitter-reactions">
|
||||
<div class="flex items-center">{{svg-jar "twitter-comment"}}2</div>
|
||||
<div class="flex items-center">{{svg-jar "twitter-retweet"}}11</div>
|
||||
<div class="flex items-center">{{svg-jar "twitter-like"}}32</div>
|
||||
<div class="flex items-center">{{svg-jar "twitter-share"}}</div>
|
||||
</div>
|
||||
<label>Search engine result preview</label>
|
||||
<div class="gh-seo-container">
|
||||
<div class="gh-seo-preview">
|
||||
<div class="flex mb6">
|
||||
{{svg-jar "google"}}
|
||||
<div class="gh-seo-search-bar">{{svg-jar "google-search"}}</div>
|
||||
</div>
|
||||
<div class="gh-seo-preview-link">{{this.config.blogDomain}}</div>
|
||||
<div class="gh-seo-preview-title">{{or this.settings.metaTitle this.settings.title}}</div>
|
||||
<div class="gh-seo-preview-desc">
|
||||
{{truncate (or this.settings.metaDescription this.settings.description) 159}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{/liquid-if}}
|
||||
</div>
|
||||
{{/liquid-if}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="gh-expandable-block">
|
||||
<div class="gh-expandable-header">
|
||||
<div>
|
||||
<h4 class="gh-expandable-title">Facebook card</h4>
|
||||
<p class="gh-expandable-description">Customize structured data of your site</p>
|
||||
</div>
|
||||
<button type="button" class="gh-btn" {{action (toggle "facebookCardOpen" this)}} data-test-toggle-facebook><span>{{if this.facebookCardOpen "Close" "Expand"}}</span></button>
|
||||
<div class="gh-expandable-block">
|
||||
<div class="gh-expandable-header">
|
||||
<div>
|
||||
<h4 class="gh-expandable-title">Twitter card</h4>
|
||||
<p class="gh-expandable-description">Customize structured data of your site for Twitter</p>
|
||||
</div>
|
||||
<div class="gh-expandable-content">
|
||||
{{#liquid-if this.facebookCardOpen}}
|
||||
<div class="gh-setting-content-extended">
|
||||
<div class="gh-og-settings">
|
||||
<div class="gh-og-settings-left flex-basis-1-2-m flex-basis-2-3-l">
|
||||
<label>Facebook image</label>
|
||||
<GhFormGroup>
|
||||
<GhImageUploaderWithPreview
|
||||
@image={{this.settings.ogImage}}
|
||||
@text="Add Facebook image"
|
||||
@allowUnsplash={{true}}
|
||||
@update={{action (mut this.settings.ogImage)}}
|
||||
@remove={{action (mut this.settings.ogImage) ""}}
|
||||
/>
|
||||
</GhFormGroup>
|
||||
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="ogTitle">
|
||||
<label for="ogTitle">Facebook title</label>
|
||||
<GhTextInput
|
||||
@id="ogTitle"
|
||||
@type="text"
|
||||
@placeholder={{truncate this.settings.title 70}}
|
||||
@value={{readonly this.settings.ogTitle}}
|
||||
@input={{action (mut this.settings.ogTitle) value="target.value"}}
|
||||
data-test-input="ogTitle"
|
||||
/>
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="ogTitle" data-test-error="ogTitle" />
|
||||
</GhFormGroup>
|
||||
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="ogDescription">
|
||||
<label for="ogDescription">Facebook description</label>
|
||||
<GhTextarea
|
||||
@id="ogDescription"
|
||||
@placeholder={{truncate this.settings.description 300}}
|
||||
@value={{readonly this.settings.ogDescription}}
|
||||
@input={{action (mut this.settings.ogDescription) value="target.value"}}
|
||||
data-test-input="ogDescription"
|
||||
/>
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="ogDescription" data-test-error="ogDescription" />
|
||||
</GhFormGroup>
|
||||
</div>
|
||||
<div class="flex-basis-1-2-m flex-basis-1-3-l">
|
||||
<label>Facebook preview</label>
|
||||
<div class="gh-og-container">
|
||||
<div class="flex ma3 mb2">
|
||||
<span>{{svg-jar "social-facebook" class="social-icon"}}</span>
|
||||
<div>
|
||||
<div class="gh-social-og-title">{{or this.settings.metaTitle this.settings.title}}</div>
|
||||
<div class="gh-social-og-time">12 hrs</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex flex-column ma3 mt2">
|
||||
<button type="button" class="gh-btn" {{action (toggle "twitterCardOpen" this)}} data-test-toggle-twitter><span>{{if this.twitterCardOpen "Close" "Expand"}}</span></button>
|
||||
</div>
|
||||
<div class="gh-expandable-content">
|
||||
{{#liquid-if this.twitterCardOpen}}
|
||||
<div class="gh-setting-content-extended">
|
||||
<div class="gh-twitter-settings">
|
||||
<div class="gh-twitter-settings-left flex-basis-1-2-m flex-basis-2-3-l">
|
||||
<label>Twitter image</label>
|
||||
<GhFormGroup>
|
||||
<GhImageUploaderWithPreview
|
||||
@image={{this.settings.twitterImage}}
|
||||
@text="Add Twitter image"
|
||||
@allowUnsplash={{true}}
|
||||
@update={{action (mut this.settings.twitterImage)}}
|
||||
@remove={{action (mut this.settings.twitterImage) ""}}
|
||||
/>
|
||||
</GhFormGroup>
|
||||
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="twitterTitle">
|
||||
<label for="twitterTitle">Twitter title</label>
|
||||
<GhTextInput
|
||||
@id="twitterTitle"
|
||||
@type="text"
|
||||
@placeholder={{truncate this.settings.title 70}}
|
||||
@value={{readonly this.settings.twitterTitle}}
|
||||
@input={{action (mut this.settings.twitterTitle) value="target.value"}}
|
||||
data-test-input="twitterTitle"
|
||||
/>
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="twitterTitle" data-test-error="twitterTitle" />
|
||||
</GhFormGroup>
|
||||
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="twitterDescription">
|
||||
<label for="twitterDescription">Twitter description</label>
|
||||
<GhTextarea
|
||||
@id="twitterDescription"
|
||||
@placeholder={{truncate this.settings.description 300}}
|
||||
@value={{readonly this.settings.twitterDescription}}
|
||||
@input={{action (mut this.settings.twitterDescription) value="target.value"}}
|
||||
data-test-input="twitterDescription"
|
||||
/>
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="twitterDescription" data-test-error="twitterDescription" />
|
||||
</GhFormGroup>
|
||||
</div>
|
||||
<div class="flex-basis-1-2-m flex-basis-1-3-l">
|
||||
<label>Twitter preview</label>
|
||||
<div class="gh-twitter-container">
|
||||
<div class="flex ma4">
|
||||
<span>{{svg-jar "social-twitter" class="social-icon"}}</span>
|
||||
<div class="w-100">
|
||||
<span class="gh-social-og-title">{{or this.settings.metaTitle this.settings.title}}</span>
|
||||
<span class="gh-social-og-time">12 hrs</span>
|
||||
<div class="flex flex-column mt2 mb3">
|
||||
<span class="gh-social-og-desc w-100 mb2" />
|
||||
<span class="gh-social-og-desc w-60" />
|
||||
</div>
|
||||
<div class="gh-social-og-preview">
|
||||
{{#if this.settings.ogImage}}
|
||||
<div class="gh-social-og-preview-image" style={{background-image-style this.settings.ogImage}}></div>
|
||||
<div class="gh-social-twitter-post-preview">
|
||||
{{#if this.settings.twitterImage}}
|
||||
<div class="gh-social-twitter-preview-image" style={{background-image-style this.settings.twitterImage}}></div>
|
||||
{{/if}}
|
||||
<div class="gh-social-og-preview-bookmark">
|
||||
{{!-- Ensures description is hidden if title exceeds one line --}}
|
||||
<div class="gh-social-og-preview-content">
|
||||
<div class="gh-social-og-preview-meta">
|
||||
{{this.config.blogDomain}}
|
||||
</div>
|
||||
<div class="gh-social-og-preview-title">{{truncate (or this.settings.ogTitle this.settings.title)}}</div>
|
||||
<div class="gh-social-og-preview-desc">{{truncate (or this.settings.ogDescription this.settings.description)}}</div>
|
||||
<div class="gh-social-twitter-preview-content">
|
||||
<div class="gh-social-twitter-preview-title">{{or this.settings.twitterTitle this.settings.title}}</div>
|
||||
<div class="gh-social-twitter-preview-desc">{{truncate (or this.settings.twitterDescription this.settings.description)}}</div>
|
||||
<div class="gh-social-twitter-preview-meta">
|
||||
{{svg-jar "twitter-link"}}
|
||||
{{this.config.blogDomain}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="gh-social-og-reactions">
|
||||
<span class="gh-social-og-likes">{{svg-jar "facebook-like" class="z-999"}}{{svg-jar "facebook-heart" class="nl1"}}182</span>
|
||||
<span class="gh-social-og-comments">7 comments</span>
|
||||
<span class="gh-social-og-comments ml2">2 shares</span>
|
||||
<div class="gh-social-twitter-reactions">
|
||||
<div class="flex items-center">{{svg-jar "twitter-comment"}}2</div>
|
||||
<div class="flex items-center">{{svg-jar "twitter-retweet"}}11</div>
|
||||
<div class="flex items-center">{{svg-jar "twitter-like"}}32</div>
|
||||
<div class="flex items-center">{{svg-jar "twitter-share"}}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{/liquid-if}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="gh-expandable-block">
|
||||
<div class="gh-expandable-header">
|
||||
<div>
|
||||
<h4 class="gh-expandable-title">Social accounts</h4>
|
||||
<p class="gh-expandable-description">Link your social accounts for full structured data and rich card support</p>
|
||||
</div>
|
||||
<button type="button" class="gh-btn" {{action (toggle "socialOpen" this)}} data-test-toggle-social><span>{{if this.socialOpen "Close" "Expand"}}</span></button>
|
||||
</div>
|
||||
<div class="gh-expandable-content">
|
||||
{{#liquid-if this.socialOpen}}
|
||||
{{/liquid-if}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="gh-expandable-block">
|
||||
<div class="gh-expandable-header">
|
||||
<div>
|
||||
<h4 class="gh-expandable-title">Facebook card</h4>
|
||||
<p class="gh-expandable-description">Customize structured data of your site</p>
|
||||
</div>
|
||||
<button type="button" class="gh-btn" {{action (toggle "facebookCardOpen" this)}} data-test-toggle-facebook><span>{{if this.facebookCardOpen "Close" "Expand"}}</span></button>
|
||||
</div>
|
||||
<div class="gh-expandable-content">
|
||||
{{#liquid-if this.facebookCardOpen}}
|
||||
<div class="gh-setting-content-extended">
|
||||
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="facebook">
|
||||
<GhTextInput
|
||||
@type="url"
|
||||
@placeholder="https://www.facebook.com/ghost"
|
||||
@autocorrect="off"
|
||||
@value={{readonly this.settings.facebook}}
|
||||
@input={{action (mut this._scratchFacebook) value="target.value"}}
|
||||
@focus-out={{action "validateFacebookUrl"}}
|
||||
data-test-facebook-input={{true}}
|
||||
/>
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="facebook" data-test-facebook-error=true />
|
||||
<p>URL of your publication's Facebook Page</p>
|
||||
</GhFormGroup>
|
||||
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="twitter">
|
||||
<GhTextInput
|
||||
@type="url"
|
||||
@placeholder="https://twitter.com/ghost"
|
||||
@autocorrect="off"
|
||||
@value={{readonly this.settings.twitter}}
|
||||
@input={{action (mut this._scratchTwitter) value="target.value"}}
|
||||
@focus-out={{action "validateTwitterUrl"}}
|
||||
data-test-twitter-input={{true}}
|
||||
/>
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="twitter" data-test-twitter-error=true />
|
||||
<p>URL of your publication's Twitter profile</p>
|
||||
</GhFormGroup>
|
||||
</div>
|
||||
{{/liquid-if}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<div class="gh-main-section">
|
||||
<h4 class="gh-main-section-header small bn">Advanced settings</h4>
|
||||
<section class="gh-expandable">
|
||||
<div class="gh-expandable-block">
|
||||
<div class="gh-expandable-header">
|
||||
<div>
|
||||
<h4 class="gh-expandable-title">Make this site private</h4>
|
||||
<p class="gh-expandable-description">
|
||||
Enable protection with a simple shared password. All search engine optimization and social features will be disabled.
|
||||
</p>
|
||||
</div>
|
||||
<div class="for-switch">
|
||||
<label class="switch" for="settings-private">
|
||||
<input
|
||||
type="checkbox"
|
||||
checked={{this.settings.isPrivate}}
|
||||
id="settings-private"
|
||||
onclick={{action "toggleIsPrivate" value="target.checked"}}
|
||||
data-test-private-checkbox
|
||||
>
|
||||
<span class="input-toggle-component"></span>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="gh-expandable-content">
|
||||
{{#if this.settings.isPrivate}}
|
||||
<div class="gh-setting-content-extended pt4 pb4">
|
||||
<span class="avoid-break-out">
|
||||
A private RSS feed is available at
|
||||
<a href="{{this.privateRSSUrl}}" target="_blank" rel="noopener noreferrer">{{this.privateRSSUrl}}</a>
|
||||
</span>
|
||||
<GhFormGroup @class="no-margin pt2" @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="password">
|
||||
<GhTextInput
|
||||
@value={{readonly this.settings.password}}
|
||||
@name="general[password]"
|
||||
@focus-out={{action "validate" "password" target=this.settings}}
|
||||
@input={{action (mut this.settings.password) value="target.value"}}
|
||||
data-test-password-input={{true}}
|
||||
/>
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="password" data-test-password-error=true />
|
||||
<p>Set the password for this site</p>
|
||||
</GhFormGroup>
|
||||
<div class="gh-og-settings">
|
||||
<div class="gh-og-settings-left flex-basis-1-2-m flex-basis-2-3-l">
|
||||
<label>Facebook image</label>
|
||||
<GhFormGroup>
|
||||
<GhImageUploaderWithPreview
|
||||
@image={{this.settings.ogImage}}
|
||||
@text="Add Facebook image"
|
||||
@allowUnsplash={{true}}
|
||||
@update={{action (mut this.settings.ogImage)}}
|
||||
@remove={{action (mut this.settings.ogImage) ""}}
|
||||
/>
|
||||
</GhFormGroup>
|
||||
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="ogTitle">
|
||||
<label for="ogTitle">Facebook title</label>
|
||||
<GhTextInput
|
||||
@id="ogTitle"
|
||||
@type="text"
|
||||
@placeholder={{truncate this.settings.title 70}}
|
||||
@value={{readonly this.settings.ogTitle}}
|
||||
@input={{action (mut this.settings.ogTitle) value="target.value"}}
|
||||
data-test-input="ogTitle"
|
||||
/>
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="ogTitle" data-test-error="ogTitle" />
|
||||
</GhFormGroup>
|
||||
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="ogDescription">
|
||||
<label for="ogDescription">Facebook description</label>
|
||||
<GhTextarea
|
||||
@id="ogDescription"
|
||||
@placeholder={{truncate this.settings.description 300}}
|
||||
@value={{readonly this.settings.ogDescription}}
|
||||
@input={{action (mut this.settings.ogDescription) value="target.value"}}
|
||||
data-test-input="ogDescription"
|
||||
/>
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="ogDescription" data-test-error="ogDescription" />
|
||||
</GhFormGroup>
|
||||
</div>
|
||||
<div class="flex-basis-1-2-m flex-basis-1-3-l">
|
||||
<label>Facebook preview</label>
|
||||
<div class="gh-og-container">
|
||||
<div class="flex ma3 mb2">
|
||||
<span>{{svg-jar "social-facebook" class="social-icon"}}</span>
|
||||
<div>
|
||||
<div class="gh-social-og-title">{{or this.settings.metaTitle this.settings.title}}</div>
|
||||
<div class="gh-social-og-time">12 hrs</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex flex-column ma3 mt2">
|
||||
<span class="gh-social-og-desc w-100 mb2" />
|
||||
<span class="gh-social-og-desc w-60" />
|
||||
</div>
|
||||
<div class="gh-social-og-preview">
|
||||
{{#if this.settings.ogImage}}
|
||||
<div class="gh-social-og-preview-image" style={{background-image-style this.settings.ogImage}}></div>
|
||||
{{/if}}
|
||||
<div class="gh-social-og-preview-bookmark">
|
||||
{{!-- Ensures description is hidden if title exceeds one line --}}
|
||||
<div class="gh-social-og-preview-content">
|
||||
<div class="gh-social-og-preview-meta">
|
||||
{{this.config.blogDomain}}
|
||||
</div>
|
||||
<div class="gh-social-og-preview-title">{{truncate (or this.settings.ogTitle this.settings.title)}}</div>
|
||||
<div class="gh-social-og-preview-desc">{{truncate (or this.settings.ogDescription this.settings.description)}}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="gh-social-og-reactions">
|
||||
<span class="gh-social-og-likes">{{svg-jar "facebook-like" class="z-999"}}{{svg-jar "facebook-heart" class="nl1"}}182</span>
|
||||
<span class="gh-social-og-comments">7 comments</span>
|
||||
<span class="gh-social-og-comments ml2">2 shares</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
</div>
|
||||
{{/liquid-if}}
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="gh-expandable-block">
|
||||
<div class="gh-expandable-header">
|
||||
<div>
|
||||
<h4 class="gh-expandable-title">Social accounts</h4>
|
||||
<p class="gh-expandable-description">Link your social accounts for full structured data and rich card support</p>
|
||||
</div>
|
||||
<button type="button" class="gh-btn" {{action (toggle "socialOpen" this)}} data-test-toggle-social><span>{{if this.socialOpen "Close" "Expand"}}</span></button>
|
||||
</div>
|
||||
<div class="gh-expandable-content">
|
||||
{{#liquid-if this.socialOpen}}
|
||||
<div class="gh-setting-content-extended">
|
||||
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="facebook">
|
||||
<GhTextInput
|
||||
@type="url"
|
||||
@placeholder="https://www.facebook.com/ghost"
|
||||
@autocorrect="off"
|
||||
@value={{readonly this.settings.facebook}}
|
||||
@input={{action (mut this._scratchFacebook) value="target.value"}}
|
||||
@focus-out={{action "validateFacebookUrl"}}
|
||||
data-test-facebook-input={{true}}
|
||||
/>
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="facebook" data-test-facebook-error=true />
|
||||
<p>URL of your publication's Facebook Page</p>
|
||||
</GhFormGroup>
|
||||
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="twitter">
|
||||
<GhTextInput
|
||||
@type="url"
|
||||
@placeholder="https://twitter.com/ghost"
|
||||
@autocorrect="off"
|
||||
@value={{readonly this.settings.twitter}}
|
||||
@input={{action (mut this._scratchTwitter) value="target.value"}}
|
||||
@focus-out={{action "validateTwitterUrl"}}
|
||||
data-test-twitter-input={{true}}
|
||||
/>
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="twitter" data-test-twitter-error=true />
|
||||
<p>URL of your publication's Twitter profile</p>
|
||||
</GhFormGroup>
|
||||
</div>
|
||||
{{/liquid-if}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</div>
|
||||
|
||||
{{#if (feature 'auditLog')}}
|
||||
<div class="gh-about-box">
|
||||
<section class="gh-env-details gh-about-box grey">
|
||||
<div class="gh-about-logo">
|
||||
{{svg-jar "ghost-logo-orb" alt="Ghost"}}
|
||||
</div>
|
||||
|
||||
{{#if this.upgradeStatus.message}}
|
||||
<section class="gh-upgrade-notification">
|
||||
<p>
|
||||
<strong>Update available!</strong> {{this.upgradeStatus.message}}
|
||||
<div class="gh-main-section">
|
||||
<h4 class="gh-main-section-header small bn">Advanced settings</h4>
|
||||
<section class="gh-expandable">
|
||||
<div class="gh-expandable-block">
|
||||
<div class="gh-expandable-header">
|
||||
<div>
|
||||
<h4 class="gh-expandable-title">Make this site private</h4>
|
||||
<p class="gh-expandable-description">
|
||||
Enable protection with a simple shared password. All search engine optimization and social features will be disabled.
|
||||
</p>
|
||||
</section>
|
||||
{{/if}}
|
||||
|
||||
<ul class="gh-env-list">
|
||||
{{#if this.linkToGitHubReleases}}
|
||||
<li><strong>Version:</strong> <a href="https://github.com/TryGhost/Ghost/releases/tag/v{{this.config.version}}" target="_blank" rel="noopener noreferrer">{{this.config.version}}</a></li>
|
||||
{{else}}
|
||||
<li><strong>Version:</strong> {{this.config.version}}</li>
|
||||
{{/if}}
|
||||
{{#if this.showSystemInfo}}
|
||||
<li><strong>Environment:</strong> <span class="ttc">{{this.config.environment}}</span></li>
|
||||
<li class="gh-env-list-database-type"><strong>Database:</strong> {{this.config.database}}</li>
|
||||
<li><strong>Mail:</strong> {{#if this.config.mail}}{{this.config.mail}}{{else}}Native{{/if}}</li>
|
||||
{{/if}}
|
||||
{{#if (enable-developer-experiments)}}
|
||||
<li><strong>Developer experiments:</strong> <span class="gh-badge">Enabled</span></li>
|
||||
{{/if}}
|
||||
</ul>
|
||||
|
||||
{{#if (and this.showSystemInfo this.showDatabaseWarning)}}
|
||||
<div class="gh-env-error">
|
||||
You are running an unsupported database in production. Please <a href="https://ghost.org/docs/faq/supported-databases/" target="_blank" rel="noopener noreferrer">upgrade to MySQL 8</a>.
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
<ul class="gh-about-links">
|
||||
<li>
|
||||
<a href="https://ghost.org/docs/" target="_blank" rel="noopener noreferrer">
|
||||
<span>
|
||||
{{svg-jar "book-open" class="fill-middarkgrey hover-fill"}}
|
||||
User documentation
|
||||
<div class="for-switch">
|
||||
<label class="switch" for="settings-private">
|
||||
<input
|
||||
type="checkbox"
|
||||
checked={{this.settings.isPrivate}}
|
||||
id="settings-private"
|
||||
onclick={{action "toggleIsPrivate" value="target.checked"}}
|
||||
data-test-private-checkbox
|
||||
>
|
||||
<span class="input-toggle-component"></span>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="gh-expandable-content">
|
||||
{{#if this.settings.isPrivate}}
|
||||
<div class="gh-setting-content-extended pt4 pb4">
|
||||
<span class="avoid-break-out">
|
||||
A private RSS feed is available at
|
||||
<a href="{{this.privateRSSUrl}}" target="_blank" rel="noopener noreferrer">{{this.privateRSSUrl}}</a>
|
||||
</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://forum.ghost.org/" target="_blank" rel="noopener noreferrer">
|
||||
<span>
|
||||
{{svg-jar "help" class="stroke-middarkgrey hover-stroke"}}
|
||||
Get help with Ghost
|
||||
</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://ghost.org/docs/contributing/" target="_blank" rel="noopener noreferrer">
|
||||
<span>
|
||||
{{svg-jar "brackets" class="stroke-middarkgrey hover-stroke"}}
|
||||
Get involved
|
||||
</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<ul class="gh-about-links">
|
||||
<li>
|
||||
<LinkTo @route="settings.audit-log" data-test-nav="audit-log">
|
||||
<span>
|
||||
{{svg-jar "calendar-stroke" class="calendar-icon stroke-middarkgrey hover-stroke"}}
|
||||
Audit log
|
||||
</span>
|
||||
</LinkTo>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<div class="gh-copyright-info">
|
||||
Copyright © 2013 – {{this.copyrightYear}} Ghost Foundation, released under the <a href="https://github.com/TryGhost/Ghost/blob/master/LICENSE" target="_blank" rel="noopener noreferrer">MIT license</a>. <a href="https://ghost.org/" target="_blank" rel="noopener noreferrer">Ghost</a> is a registered trademark of <a href="https://ghost.org/trademark/" target="_blank" rel="noopener noreferrer">Ghost Foundation Ltd</a>.
|
||||
<GhFormGroup @class="no-margin pt2" @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="password">
|
||||
<GhTextInput
|
||||
@value={{readonly this.settings.password}}
|
||||
@name="general[password]"
|
||||
@focus-out={{action "validate" "password" target=this.settings}}
|
||||
@input={{action (mut this.settings.password) value="target.value"}}
|
||||
data-test-password-input={{true}}
|
||||
/>
|
||||
<GhErrorMessage @errors={{this.settings.errors}} @property="password" data-test-password-error=true />
|
||||
<p>Set the password for this site</p>
|
||||
</GhFormGroup>
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{/if}}
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{outlet}}
|
Loading…
Reference in New Issue
Block a user