forked from Leafpub/saga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtag.hbs
executable file
·25 lines (22 loc) · 934 Bytes
/
tag.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{{!-- The tag below includes the header - partials/header.hbs --}}
{{> header}}
{{#tag}}
<header id="header" class="animated fadeIn"{{#if cover}} style="background-image: url({{url cover}})"{{/if}}>
<div class="header-background">
<section class="blog-content">
<a id="site-url" class="blog-title" href="{{url}}" data-theme-url="{{theme_url}}">{{@settings.title}}</a>
<span class="blog-description">{{@settings.description}}</span>
{{> links}}
</section>
<section class="header-content">
<h1 class="tag-title animated fadeInUp">{{name}}</h1>
<span class="tag-data"><span class="tag-description animated fadeInUp">{{description}}</span></span>
</section>
</div>
</header>
{{/tag}}
<main id="main" class="archive">
{{> loop}}
</main>
{{!-- The tag below includes the footer - partials/footer.hbs --}}
{{> footer}}