mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
24 lines
609 B
Handlebars
24 lines
609 B
Handlebars
|
{{!< default}}
|
||
|
|
||
|
{{!-- Everything inside the #post tags pulls data from the post --}}
|
||
|
{{#post}}
|
||
|
|
||
|
<main id="site-main" class="site-main outer">
|
||
|
<div class="inner">
|
||
|
|
||
|
<article class="post-full {{post_class}} {{#unless feature_image}}no-image{{/unless}}">
|
||
|
|
||
|
<header class="post-full-header">
|
||
|
<h1 class="post-full-title">{{title}}</h1>
|
||
|
</header>
|
||
|
|
||
|
<section class="post-full-content">
|
||
|
<div class="post-content">
|
||
|
{{content}}
|
||
|
</div>
|
||
|
</section>
|
||
|
</article>
|
||
|
</div>
|
||
|
</main>
|
||
|
{{/post}}
|