Files
Journal-ghost/page.hbs
Sanne de Vries 4252cd768a Added support for hiding page title and feature image (#262)
* Added support for hiding page title and feature image

Refs https://github.com/TryGhost/Product/issues/3568
2023-08-01 07:52:02 +08:00

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}}