mirror of
https://github.com/aljazceru/Journal-ghost.git
synced 2026-01-10 16:54:22 +01:00
* Added support for hiding page title and feature image Refs https://github.com/TryGhost/Product/issues/3568
27 lines
617 B
Handlebars
27 lines
617 B
Handlebars
{{!< default}}
|
|
|
|
{{#post}}
|
|
|
|
<main id="gh-main" class="gh-main">
|
|
<article class="gh-article {{post_class}}">
|
|
|
|
{{#match @page.show_title_and_feature_image}}
|
|
<header class="gh-article-header gh-canvas">
|
|
<h1 class="gh-article-title">{{title}}</h1>
|
|
|
|
{{#if custom_excerpt}}
|
|
<p class="gh-article-excerpt">{{custom_excerpt}}</p>
|
|
{{/if}}
|
|
|
|
{{> "feature-image"}}
|
|
</header>
|
|
{{/match}}
|
|
|
|
<div class="gh-content gh-canvas">
|
|
{{content}}
|
|
</div>
|
|
|
|
</article>
|
|
</main>
|
|
|
|
{{/post}} |