mirror of https://github.com/juliancwirko/abc.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
720 B
18 lines
720 B
10 years ago
|
{{! This is the post loop - each post will be output using this markup }}
|
||
|
{{#foreach posts}}
|
||
|
<article class="{{post_class}}">
|
||
|
<header class="post-header">
|
||
|
<time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time>
|
||
|
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
|
||
|
</header>
|
||
|
<footer class="post-meta">
|
||
|
{{#if author.image}}<img class="author-thumb" src="{{author.image}}" alt="Author image" nopin="nopin" />{{/if}}
|
||
|
{{author}}
|
||
|
{{tags prefix=" on "}}
|
||
|
</footer>
|
||
|
</article>
|
||
|
{{/foreach}}
|
||
|
|
||
|
{{! Previous/next page links - displayed on every page - this is a custom pagination partial}}
|
||
|
{{pagination}}
|