bifocal/post.hbs

36 lines
1.3 KiB
Handlebars
Raw Permalink Normal View History

2022-09-12 05:59:12 -04:00
{{!< default}}
<main class="gh-main gh-outer">
<div class="gh-inner">
{{#post}}
<article class="gh-article {{post_class}}">
2024-07-31 13:10:37 -04:00
<div class="post-card-tags">
{{> "get-meta-tags"}}
</div>
2022-09-12 05:59:12 -04:00
{{#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">
<aside class="gh-sidebar"><div class="gh-toc"></div></aside> {{! Table of contents }}
2022-09-12 05:59:12 -04:00
{{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>
2024-06-19 09:56:58 -04:00
</main>