mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 19:48:50 +03:00
3c851293c1
no issue We were in a part-way state where some touched files had been (sometimes partially) migrated to explicit `this`. The codemod that was available has now fixed the formatting issues it had so it was a good time to run it. https://github.com/ember-codemods/ember-no-implicit-this-codemod - part of the migration path for https://github.com/emberjs/rfcs/pull/308 - starts to make template resolution rules more explicit - `<MyComponent />` - always a component - `{{my-component}}` - component or helper (components _must_ have a `-`. This style of component will go away once fully migrated to angle bracket components) - `{{value}}` - a helper or local template variable - `{{this.value}}` - reference to a property on the backing context (either a controller or a component JS file)
47 lines
2.3 KiB
Handlebars
47 lines
2.3 KiB
Handlebars
<section class="gh-canvas js-settings-content">
|
||
<GhCanvasHeader class="gh-canvas-header">
|
||
{{svg-jar "ghost-logo" class="gh-logo" alt="Ghost"}}
|
||
</GhCanvasHeader>
|
||
<section class="view-container">
|
||
<section class="gh-env-details">
|
||
<ul class="gh-env-list">
|
||
<li class="gh-env-list-version"><strong>Version</strong> {{this.config.version}}</li>
|
||
<li><strong>Environment</strong> {{this.config.environment}}</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>
|
||
</ul>
|
||
<div class="gh-env-help">
|
||
<a class="gh-btn" href="https://ghost.org/docs/" 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 this.upgradeStatus.message}}
|
||
<section class="gh-upgrade-notification">
|
||
<p>
|
||
<strong>Update available!</strong> {{this.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 you’re using right now.</p>
|
||
|
||
<a class="gh-btn gh-btn-blue" href="https://ghost.org/docs/concepts/contributing/" target="_blank"><span>Find out how you can get involved</span></a>
|
||
|
||
</section>
|
||
|
||
<footer 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">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>
|