-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tag-coding.hbs
34 lines (28 loc) · 959 Bytes
/
tag-coding.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
{{!< default}}
{{#contentFor 'htmlLang'}}{{@site.locale}}{{/contentFor}}
{{#contentFor 'styles'}}
<link rel="stylesheet" type="text/css" href="{{asset "css/pagination.css"}}" />
{{/contentFor}}
{{#contentFor 'title'}}Coding & Tech - Stories and tutorials for all kind of coders - {{@site.title}}{{/contentFor}}
<div class="mds-page">
<div class="mds-container">
{{#tag}}
<header class="mds-header">
<h1 class="mds-title">Coding & Tech</h1>
<p>
{{#if description}}
{{description}}
{{else}}
A collection of {{plural ../pagination.total empty='posts' singular='% post' plural='% posts'}}
{{/if}}
</p>
</header>
{{/tag}}
<div class="mds-postfeed">
{{#foreach posts}}
{{> "card"}}
{{/foreach}}
</div>
{{pagination}}
</div>
</div>