-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.hbs
34 lines (31 loc) · 1.44 KB
/
index.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
{{#contentFor "socialmeta"}}
<meta property="twitter:card" content="summary">
<meta property="twitter:site" content="@rihards">
<meta property="twitter:title" content="{{@blog.title}}">
<meta property="twitter:description" content="{{@blog.description}}">
<meta property="twitter:image" content="{{@blog.url}}{{asset "images/[email protected]"}}">
<meta property="twitter:url" content="{{@blog.url}}">
<meta property="og:site_name" content="{{@blog.title}}">
<meta property="og:title" content="{{@blog.title}}">
<meta property="og:type" content="blog">
<meta property="og:description" content="{{@blog.description}}">
<meta property="og:url" content="{{@blog.url}}">
<meta property="og:image" content="{{@blog.url}}{{asset "images/[email protected]"}}">
{{/contentFor}}
{{!< default}}
{{! The main content area on the homepage }}
<main role="main">
{{#foreach posts}}
<article class="{{post_class}}">
<header class="post-header">
<h2 class="post-title"><a href="{{url}}">{{title}}</a></h2>
<p class="date post-meta"><time datetime="{{date published_at format='YYYY-MM-DD'}}">{{date published_at format="MMMM YYYY"}}</time></p>
</header>
<section class="content">
<p>{{content words="32"}} …<a href="{{url}}">continue reading</a>.</p>
</section>
</article>
{{/foreach}}
{{!! After all the posts, we have the previous/next pagination links }}
{{pagination}}
</main>