-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.hbs
More file actions
29 lines (23 loc) · 769 Bytes
/
index.hbs
File metadata and controls
29 lines (23 loc) · 769 Bytes
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
{{!< default}}
<main class="main_alex" role="main">
{{#foreach posts}}
<article class="article_alex" role="article" itemscope itemtype="http://schema.org/Article">
<header class="postheader_alex">
<h3 class="posttitle_alex" itemprop="headline">
<a href="{{{url}}}" rel="bookmark">{{title}}</a>
</h3>
<time class="date_alex" datetime="{{date format="YYYY-MM-DD"}}" itemprop="datePublished">{{date format='M/DD/YY'}}
</time>
</header>
<div class="postcontent_alex" itemprop="articleBody">
{{content}}
</div>
</article>
<div class="sexy_line_alex"></div>
{{/foreach}}
{{#if pagination}}
<div class="pagination_alex">
{{{pagination}}}
</div>
{{/if}}
</main>