-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.hbs
More file actions
41 lines (37 loc) · 1.52 KB
/
index.hbs
File metadata and controls
41 lines (37 loc) · 1.52 KB
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
{{!< default}}
{{!-- The tag above means: insert everything in this file
into the {body} of the default.hbs template --}}
<main id="site-main" class="site-main outer" role="main">
<div class="preload-on-background subpage"></div>
<div class="fronta subpage">
<div id="pt4" class="ptsjs nojs-downloads"></div>
<div class="_960 subpage-header"><a href="https://decred.org" class="subpage-logo w-inline-block"></a></div>
<div class="_960 subpage-header">
<div class="subpage-title" translate>{{title}}</div>
</div>
</div>
<div class="below subpage">
<div class="full-width">
<div class="_960">
<div class="subpage-content-section">
{{#foreach posts}}
<article class="{{post_class}}">
<header class="post-header">
<h2><a href="{{url}}">{{title}}</a></h2>
</header>
<section class="post-excerpt">
<p>{{excerpt words="26"}} <a class="read-more" href="{{url}}">...</a></p>
</section>
<footer class="post-meta">
{{#if primary_author.profile_image}}<img src="{{primary_author.profile_image}}" alt="Author image" />{{/if}}
{{primary_author}}
{{tags prefix=" on "}}
<time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time>
</footer>
</article>
{{/foreach}}
</div>
</div>
</div>
</div>
</main>