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.
19 lines
831 B
19 lines
831 B
{{! 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"> |
|
{{#primary_author}} |
|
{{#if profile_image}}<img class="author-thumb" src="{{profile_image}}" alt="Author image" nopin="nopin" />{{/if}} |
|
<a href="{{url}}" class="author-link-name">{{name}}</a> |
|
{{/primary_author}} |
|
{{tags prefix=" on "}} |
|
</footer> |
|
</article> |
|
{{/foreach}} |
|
|
|
{{! Previous/next page links - displayed on every page - this is a custom pagination partial}} |
|
{{pagination}}
|
|
|