zgodovina-fotografije/content/themes/aluo_foto_master-2/old/index copy 3.hbs

61 lines
2.5 KiB
Handlebars
Executable File

{{!< default}}
<header class="blog-header {{#if @site.cover_image}} has-cover{{/if}}">
<div class="inner">
<div class="box blog-box">
<h1 class="blog-name">{{@site.title}}</h1>
{{#if @site.description}}
<span class="blog-description">{{@site.description}}</span>
{{/if}}
</div>
{{#if @site.cover_image}}
<div class="blog-cover cover">
<img
srcset="{{img_url @site.cover_image size="s"}} 320w,
{{img_url @site.cover_image size="m"}} 640w,
{{img_url @site.cover_image size="l"}} 960w,
{{img_url @site.cover_image size="xl"}} 1920w"
src="{{img_url @site.cover_image size="xl"}}"
alt="{{@site.title}}" />
</div>
{{/if}}
</div>
</header>
<div id="index" class="container">
<main class="content" role="main">
{{!-- Main Content --}}
{{#get "posts" order="published_at asc" limit="all"}}
{{#foreach posts}}
<article id="{{slug}}" class="{{post_class}}">
<div class="inner post-content-container">
<div class="post-text-section post-content">
<div class="box post-box">
{{#if featured}}
<span class="post-feature">
<i class="icon icon-star">{{> "icons/icon-star"}}</i>
</span>
{{/if}}
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
<span class="post-meta">
{{t "By"}}
{{authors separator=", "}}
{{#primary_tag}}{{t "in"}} <a class="post-meta-tag" href="{{url}}">{{name}}</a>{{/primary_tag}}
{{t "on"}}
<time datetime="{{date format='DD-MM-YYYY'}}">{{date format="DD MMM YYYY"}}</time>
</span>
<div class="post-content">{{{content}}}</div>
</div>
</div>
{{#if feature_image}}
<div class="post-image-section">
<img src="{{feature_image}}" alt="{{title}}">
</div>
{{/if}}
</div>
</article>
{{/foreach}}
{{/get}}
</main>
</div>