mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
16728a3ef1
- Traditionally all of Ghost's public-facing text was written in British English - We're changing that to US English because that's more common - US English should also be used in code e.g. properties are called color not colour - most of these changes are in comments, but I've changed them so that we have US English in front of us always - fixed a few other typos I noticed whilst there
31 lines
1.1 KiB
Handlebars
Executable file
31 lines
1.1 KiB
Handlebars
Executable file
{{!< default}}
|
|
|
|
{{!-- This is a page template. A page outputs content just like any other post, and has all the same
|
|
attributes by default, but you can also customize it to behave differently if you prefer. --}}
|
|
|
|
{{!-- Everything inside the #post tags pulls data from the page --}}
|
|
{{#post}}
|
|
|
|
<header class="main-header post-head {{#if feature_image}}" style="background-image: url({{feature_image}}){{else}}no-cover{{/if}}">
|
|
<nav class="main-nav {{#if feature_image}}overlay{{/if}} clearfix">
|
|
{{#if @blog.logo}}<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="{{@blog.title}}" /></a>{{/if}}
|
|
{{#if @blog.navigation}}
|
|
<a class="menu-button icon-menu" href="#"><span class="word">Menu</span></a>
|
|
{{/if}}
|
|
</nav>
|
|
</header>
|
|
|
|
<main class="content" role="main">
|
|
<article class="{{post_class}}">
|
|
|
|
<header class="post-header">
|
|
<h1 class="post-title">{{title}}</h1>
|
|
</header>
|
|
|
|
<section class="post-content">
|
|
{{content}}
|
|
</section>
|
|
|
|
</article>
|
|
</main>
|
|
{{/post}}
|