2022-08-22 18:52:33 +03:00
<section class="gh-canvas js-settings-content {{ if ( feature 'auditLog' ) "gh-whats-new-canvas" }} " {{ scroll-top }} >
2021-09-08 15:00:24 +03:00
<GhCanvasHeader class="gh-canvas-header">
<h2 class="gh-whats-new-heading"> {{ svg-jar "gift" }} What's new?</h2>
2022-08-22 18:52:33 +03:00
{{ # if ( not ( feature 'auditLog' ) ) }}
<div class="gh-about-header-actions">
<a class="gh-btn gh-btn-outline" href="https://ghost.org/docs/" target="_blank" rel="noopener noreferrer"><span>User documentation</span></a>
<a class="gh-btn gh-btn-outline" href="https://forum.ghost.org/" target="_blank" rel="noopener noreferrer"><span>Get help with Ghost</span></a>
<a class="gh-btn gh-btn-black" href="https://ghost.org/docs/contributing/" target="_blank" rel="noopener noreferrer"><span>Get involved</span></a>
</div>
{{ / if }}
2021-09-08 15:00:24 +03:00
</GhCanvasHeader>
<section class="view-container">
<div class="gh-about-container">
<section class="gh-whats-new gh-about-box" {{ did-insert ( perform this .whatsNew .updateLastSeen ) }} >
{{ # each this .whatsNew .entries as | entry | }}
2022-08-22 18:52:33 +03:00
<div class="gh-wn-entry" {{ scroll-to shouldScroll = ( eq entry .slug this .entry ) }} >
<a href=" {{ entry .url }} ">
<h4> {{ moment-format entry .published_at "DD MMMM YYYY" }} </h4>
<h1> {{ entry .title }} </h1>
{{ # if entry .feature_image }}
<img class="mb5" src= {{ entry .feature_image }} >
{{ / if }}
</a>
2021-09-08 15:00:24 +03:00
<div class="gh-wn-content">
{{ # if entry .custom_excerpt }}
<p> {{ entry .custom_excerpt }} </p>
<a href= {{ entry .url }} class="dib fw6 mb6" target="_blank" rel="noopener noreferrer">Read the full post →</a>
{{ else }}
{{{ entry .html }}}
{{ / if }}
</div>
2022-08-22 18:52:33 +03:00
</div>
2021-09-08 15:00:24 +03:00
{{ / each }}
<a class="green" href="https://ghost.org/changelog" target="_blank" rel="noopener noreferrer">See all updates →</a>
</section>
2022-08-31 12:51:30 +03:00
{{ # if ( not ( feature 'auditLog' ) ) }}
2021-09-08 15:00:24 +03:00
<div class="gh-about-content-actions">
2022-02-02 19:09:43 +03:00
<a class="gh-btn gh-btn-outline" href="https://ghost.org/docs/" target="_blank" rel="noopener noreferrer"><span>User documentation</span></a>
<a class="gh-btn gh-btn-outline" href="https://forum.ghost.org/" target="_blank" rel="noopener noreferrer"><span>Get help with Ghost</span></a>
<a class="gh-btn gh-btn-black" href="https://ghost.org/docs/contributing/" target="_blank" rel="noopener noreferrer"><span>Get involved</span></a>
2021-09-08 15:00:24 +03:00
</div>
<section class="gh-env-details gh-about-box grey">
<div class="gh-about-logo">
{{ svg-jar "ghost-logo-orb" alt = "Ghost" }}
</div>
2022-01-14 16:27:32 +03:00
2021-09-08 15:00:24 +03:00
{{ # if this .upgradeStatus .message }}
<section class="gh-upgrade-notification">
<p>
<strong>Update available!</strong> {{ this .upgradeStatus .message }}
</p>
</section>
{{ / if }}
2022-01-14 16:27:32 +03:00
2021-09-08 15:00:24 +03:00
<ul class="gh-env-list">
2022-08-09 09:30:02 +03:00
{{ # if this .linkToGitHubReleases }}
2022-07-14 16:07:24 +03:00
<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>
2022-08-09 09:30:02 +03:00
{{ else }}
<li><strong>Version:</strong> {{ this .config .version }} </li>
{{ / if }}
2022-05-10 15:52:25 +03:00
{{ # if this .showSystemInfo }}
2021-09-08 15:00:24 +03:00
<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>
2022-05-10 15:52:25 +03:00
{{ / if }}
2021-09-08 15:00:24 +03:00
{{ # if ( enable-developer-experiments ) }}
<li><strong>Developer experiments:</strong> <span class="gh-badge">Enabled</span></li>
{{ / if }}
</ul>
2022-01-14 16:27:32 +03:00
2022-05-10 15:52:25 +03:00
{{ # if ( and this .showSystemInfo this .showDatabaseWarning ) }}
2022-08-05 13:20:10 +03:00
<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>
2022-01-14 16:27:32 +03:00
{{ / if }}
2021-09-08 15:00:24 +03:00
<footer class="gh-copyright-info">
2022-02-02 19:09:43 +03:00
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>.
2021-09-08 15:00:24 +03:00
</footer>
</section>
2022-08-22 18:52:33 +03:00
{{ / if }}
2021-09-08 15:00:24 +03:00
</div>
</section>
</section>