35 lines
1.2 KiB
Handlebars
35 lines
1.2 KiB
Handlebars
{{!< default}}
|
|
|
|
<main class="gh-main gh-outer">
|
|
<div class="gh-inner">
|
|
{{#post}}
|
|
<article class="gh-article {{post_class}}">
|
|
<div class="post-card-tags">
|
|
{{> "get-meta-tags"}}
|
|
</div>
|
|
|
|
{{#if 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}}
|
|
</header>
|
|
{{/if}}
|
|
|
|
<section class="gh-content gh-canvas">
|
|
{{content}}
|
|
{{#unless feature_image}}
|
|
<header class="gh-article-header">
|
|
<h1 class="gh-article-title">{{title}}</h1>
|
|
{{#if custom_excerpt}}
|
|
<p class="gh-article-excerpt">{{custom_excerpt}}</p>
|
|
{{/if}}
|
|
</header>
|
|
{{/unless}}
|
|
</section>
|
|
</article>
|
|
{{/post}}
|
|
</div>
|
|
</main>
|