-
Notifications
You must be signed in to change notification settings - Fork 1
/
tag.hbs
68 lines (53 loc) · 2.05 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{{!< default}}
<header class="site-head post-2">
<div class="vertical">
<div role='banner' class="header_typesome">
{{#if @blog.logo}}<a class="logo_typesome" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="{{@blog.title}}" /></a>{{/if}}
<h1 class="blogtitle_typesome">{{tag.name}}</h1>
</div>
</div>
</header>
<main class="main_typesome" role="main">
<hr class="pause" />
{{#foreach posts}}
<article class="article_typesome">
<header class="postheader_typesome">
<ul>
{{#if author.image}}<li><img class="author-thumb_typesome" src="{{author.image}}" alt="Author image" nopin="nopin" /></li>{{/if}}
<li class="name-thumb_typesome"><a href="{{@blog.url}}/author/{{author.slug}}">{{author.name}}</a></li>
<li class="date_typesome"><time>
{{date format='DD.MM.YYYY'}}</time></li>
{{#if tags}}
<li class="posttags_typesome">
{{tags separator=", "}}
</li>
{{/if}}
</ul>
<h2 class="posttitle_typesome"><a href="{{{url}}}" rel="bookmark">
{{title}}
</a></h2>
</header>
<div class="postcontent_typesome">
<p>{{excerpt}}…</p>
</div>
<footer class="excerptfooter_typesome" >
<section class="read_typesome">
<a class="more_typesome" href="{{{url}}}">Mehr lesen</a>
<span></span>
<a class="comments_typesome" href="{{url}}#disqus_thread" data-disqus-identifier="{{id}}">Kommentare</a>
</section>
<section class="share_typesome">
<h4>Share: </h4>
<a class="fa fa-twitter-square" target="_blank" href="http://twitter.com/share?text={{title}}&url={{url absolute="true"}}"><span class="hidden_typesome">Twitter</span></a>
<a class="fa fa-facebook-square" target="_blank" href="http://www.facebook.com/sharer.php?u={{url absolute="true"}}"><span class="hidden_typesome">Facebook</span></a>
</section>
</footer>
</article>
{{/foreach}}
{{#if pagination}}
<div class="pagination_typesome">
{{{pagination}}}
</div>
{{/if}}
</main>
{{> footer}}