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">
|
2024-09-01 00:32:57 -04:00
|
|
|
<h1 class="gh-article-title">
|
2025-11-13 22:02:59 -05:00
|
|
|
{{> "get-post-icon"}}
|
2024-09-01 00:32:57 -04:00
|
|
|
{{title}}
|
|
|
|
|
<div class="tag-desc">
|
|
|
|
|
{{> "get-desc-tags"}}
|
|
|
|
|
</div>
|
|
|
|
|
</h1>
|
2022-09-12 05:59:12 -04:00
|
|
|
{{#if custom_excerpt}}
|
|
|
|
|
<p class="gh-article-excerpt">{{custom_excerpt}}</p>
|
|
|
|
|
{{/if}}
|
|
|
|
|
</header>
|
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
|
|
<section class="gh-content gh-canvas">
|
2024-09-01 00:52:37 -04:00
|
|
|
<aside class="gh-sidebar">
|
|
|
|
|
<div class="gh-toc"></div>
|
|
|
|
|
</aside>
|
2024-09-01 00:32:57 -04:00
|
|
|
|
2022-09-12 05:59:12 -04:00
|
|
|
{{content}}
|
2024-09-01 00:32:57 -04:00
|
|
|
|
2022-09-12 05:59:12 -04:00
|
|
|
{{#unless feature_image}}
|
|
|
|
|
<header class="gh-article-header">
|
2025-11-13 22:02:59 -05:00
|
|
|
<h1 class="gh-article-title">
|
|
|
|
|
{{> "get-post-icon"}}
|
|
|
|
|
{{title}}
|
|
|
|
|
<div class="tag-desc">
|
|
|
|
|
{{> "get-desc-tags"}}
|
|
|
|
|
</div>
|
|
|
|
|
</h1>
|
2022-09-12 05:59:12 -04:00
|
|
|
{{#if custom_excerpt}}
|
|
|
|
|
<p class="gh-article-excerpt">{{custom_excerpt}}</p>
|
|
|
|
|
{{/if}}
|
|
|
|
|
</header>
|
|
|
|
|
{{/unless}}
|
|
|
|
|
</section>
|
|
|
|
|
</article>
|
2024-08-31 22:39:33 -04:00
|
|
|
|
2024-09-01 00:52:37 -04:00
|
|
|
{{!-- Adds table of contents unless instructed not to --}}
|
|
|
|
|
{{^has tag="#hide toc"}}
|
|
|
|
|
<script src="{{asset "js/lib/tocbot.min.js"}}"></script>
|
|
|
|
|
<script>
|
|
|
|
|
tocbot.init({
|
|
|
|
|
tocSelector: '.gh-toc',
|
|
|
|
|
contentSelector: '.gh-content',
|
2025-03-20 23:04:44 -04:00
|
|
|
headingSelector: 'h2',
|
2024-09-01 00:52:37 -04:00
|
|
|
hasInnerContainers: true,
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
{{/has}}
|
2022-09-12 05:59:12 -04:00
|
|
|
{{/post}}
|
|
|
|
|
</div>
|
2024-06-19 09:56:58 -04:00
|
|
|
</main>
|