Files
ghost.sori.studio/page.hbs
2026-04-16 12:00:28 +09:00

25 lines
833 B
Handlebars

{{!< default}}
{{#post}}
<main class="px-4 sm:px-[max(2vmin,20px)] mt-6 mb-8">
<article class="post-template page-template {{post_class}}">
{{#match @page.show_title_and_feature_image}}
<header class="post-header">
<h1 class="post-title">{{title}}</h1>
{{#if custom_excerpt}}
<p class="section-description">{{custom_excerpt}}</p>
{{/if}}
{{#if feature_image}}
<figure class="post-feature-image">
<img src="{{img_url feature_image size="l"}}" alt="{{title}}">
</figure>
{{/if}}
</header>
{{/match}}
<section class="post-content kg-content">
{{content}}
</section>
</article>
</main>
{{/post}}