forked from TryGhost/Source
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tag.hbs
21 lines (18 loc) · 908 Bytes
/
tag.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{!< default}}
{{!-- The tag above means: insert everything in this file into the body of the default.hbs template --}}
<main class="gh-main gh-outer">
{{#tag}}
<section class="gh-archive{{#if feature_image}} has-image{{/if}}{{#if @custom.show_publication_info_sidebar}} has-sidebar{{/if}} gh-inner">
<div class="gh-archive-inner">
<header class="gh-archive-wrapper">
<h1 class="gh-article-title is-title">{{name}}</h1>
{{#if description}}
<p class="gh-article-excerpt">{{description}}</p>
{{/if}}
</header>
{{> "feature-image" size="s"}}
</div>
</section>
{{/tag}}
{{> "components/post-list" feed="archive" [email protected]_feed_style showTitle=false [email protected]_publication_info_sidebar}}
</main>