Beatrice Dellacà
1c4edf415c
The structure is not even close to being finished, and only looks decent on desktop.
60 lines
2.1 KiB
Handlebars
60 lines
2.1 KiB
Handlebars
{{!< default}}
|
|
|
|
<div class="ptheme-index-header_main unselectable">
|
|
<h1>{{@site.title}}</h1>
|
|
</div>
|
|
|
|
|
|
<main>
|
|
|
|
<nav id="ptheme-global-navbar_primary" class="ptheme-global-navbar_primary unselectable">
|
|
{{navigation}}
|
|
</nav>
|
|
|
|
<div class="ptheme-content_main">
|
|
|
|
{{!-- Looping through every post --}}
|
|
{{#foreach posts}}
|
|
<article class="ptheme-index-post_article">
|
|
|
|
<div class="ptheme-index-post_feature-image-container">
|
|
{{#if feature_image}}
|
|
<a href="{{url}}">
|
|
<img class="ptheme-index-post_feature-image" src="{{img_url feature_image size="m"}}" alt="{{title}}"/>
|
|
</a>
|
|
{{/if}}
|
|
</div>
|
|
|
|
<div class="ptheme-index-post_excerpt">
|
|
<p>
|
|
{{#foreach tags}}
|
|
<a href="{{url}}" title="{{name}}" class="tag tag-{{id}} {{slug}}"><b>{{name}}</b></a>{{#unless @last}}, {{/unless}}
|
|
{{/foreach}}
|
|
•
|
|
<time datetime="{{date published_at format='YYYY-MM-DD'}}">{{date published_at format="DD MMMM YYYY"}}</time>
|
|
</p>
|
|
<a href="{{url}}">
|
|
<header>
|
|
<h3>{{title}}</h3>
|
|
</header>
|
|
|
|
<section>
|
|
<p>{{excerpt words="60"}}</p>
|
|
</section>
|
|
</a>
|
|
{{!-- author info disabled because i'm the only one posting here
|
|
<footer class="ptheme-index-post_footer">
|
|
{{#if primary_author.profile_image}}
|
|
<img class="ptheme-index-post_author-image" src="{{img_url primary_author.profile_image size="xxs"}}"
|
|
alt="{{title}}"/>{{/if}}
|
|
{{primary_author.name}}
|
|
</footer>
|
|
--}}
|
|
</div>
|
|
</article>
|
|
|
|
{{/foreach}}
|
|
|
|
</div>
|
|
|
|
</main> |