1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/app/templates/about.hbs
Hannah Wolfe a07a262597 Slack -> Forum Take 2
- replacing references to slack with forum
2018-04-02 17:17:13 +01:00

46 lines
2.2 KiB
Handlebars
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<section class="gh-canvas js-settings-content">
<header class="gh-canvas-header">
{{svg-jar "ghost-logo" class="gh-logo" alt="Ghost"}}
</header>
<section class="view-container">
<section class="gh-env-details">
<ul class="gh-env-list">
<li class="gh-env-list-version"><strong>Version</strong> {{about.version}}</li>
<li><strong>Environment</strong> {{about.environment}}</li>
<li class="gh-env-list-database-type"><strong>Database</strong> {{about.database}}</li>
<li><strong>Mail</strong> {{#if about.mail}}{{about.mail}}{{else}}Native{{/if}}</li>
</ul>
<div class="gh-env-help">
<a class="gh-btn" href="https://help.ghost.org" target="_blank"><span>User Documentation</span></a>
<a class="gh-btn" href="https://forum.ghost.org/" target="_blank"><span>Get Help With Ghost</span></a>
</div>
</section>
{{#if upgradeStatus.message}}
<section class="gh-upgrade-notification">
<p>
<strong>Update available!</strong> {{upgradeStatus.message}}
</p>
</section>
{{/if}}
<section class="gh-credits">
<h2>The People Who Made it Possible</h2>
<section class="gh-contributors">
{{partial "contributors"}}
</section>
<p>Ghost is built by an incredible group of contributors from all over the world. Here are just a few of the people who helped create the version youre using right now.</p>
<a class="gh-btn gh-btn-blue" href="https://ghost.org/developers/" target="_blank"><span>Find out how you can get involved</span></a>
</section>
<footer class="gh-copyright-info">
Copyright &copy; 2013 &ndash; {{copyrightYear}} Ghost Foundation, released under the <a href="https://github.com/TryGhost/Ghost/blob/master/LICENSE" target="_blank">MIT license</a>.
<br>
<a href="https://ghost.org/" target="_blank">Ghost</a> is a registered trademark of <a href="https://ghost.org/trademark/" target="_blank">Ghost Foundation Ltd</a>.
</footer>
</section>
</section>