2020-10-30 00:19:49 +01:00
|
|
|
{{!< default}}
|
|
|
|
<div class="mind-post-header unselectable">
|
2020-11-05 16:14:13 +01:00
|
|
|
{{#post}}
|
2020-10-30 00:19:49 +01:00
|
|
|
|
2020-11-05 16:14:13 +01:00
|
|
|
<div>
|
|
|
|
<h1>{{title}}</h1>
|
|
|
|
<p><a class="mind-post-header_tag" href="{{primary_tag.url}}">{{primary_tag.name}}</a> •
|
2021-01-03 15:56:27 +01:00
|
|
|
<time class="post-date" datetime="{{date published_at format='YYYY-MM-DD'}}">{{date published_at format="DD MMMM YYYY"}}</time>
|
2020-11-05 16:14:13 +01:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
{{/post}}
|
|
|
|
<i class="mind-global-header_arrow-down mind-global-header_arrow-down-mid"></i>
|
2020-10-30 00:19:49 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<main>
|
2020-11-05 16:14:13 +01:00
|
|
|
<div class="mind-content_main">
|
|
|
|
<div class="mind-post_main">
|
|
|
|
<aside class="mind-post_sidebar unselectable">
|
|
|
|
<div class="mind-post_sidebar-content" id="mind-post_sidebar-left">
|
2020-11-06 00:27:57 +01:00
|
|
|
<h4>Paragraphs</h4>
|
|
|
|
{{!-- This gets automatically filled by the sidebar script! --}}
|
2020-11-05 16:14:13 +01:00
|
|
|
</div>
|
|
|
|
</aside>
|
|
|
|
{{#post}}
|
|
|
|
<div class="mind-post_central-column">
|
|
|
|
<div class="mind-post_content">
|
|
|
|
<div class="mind-post_content-header">
|
|
|
|
|
|
|
|
{{#if feature_image}}
|
2020-11-06 17:35:02 +01:00
|
|
|
<img class="mind-post_feature-image"
|
|
|
|
srcset="
|
|
|
|
{{img_url feature_image size="s"}} 300w,
|
|
|
|
{{img_url feature_image size="m"}} 600w,
|
|
|
|
{{img_url feature_image size="l"}} 1200w,
|
|
|
|
{{img_url feature_image size="xl"}} 1600w,
|
|
|
|
{{img_url feature_image size="xxl"}} 2000w"
|
|
|
|
src="{{img_url feature_image size="l"}}"
|
2020-11-05 16:14:13 +01:00
|
|
|
alt="Feature Image"/>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
{{content}}
|
|
|
|
<hr>
|
2021-01-03 15:56:27 +01:00
|
|
|
<i>Last update: <time class="post-date" datetime="{{date updated_at format='YYYY-MM-DD'}}">{{date updated_at format="DD MMMM YYYY"}}</time></i>
|
|
|
|
<br />
|
|
|
|
<i>Author: {{primary_author.name}}</i>
|
|
|
|
|
|
|
|
{{#if tags}}
|
|
|
|
<br />
|
|
|
|
<i>Tags:
|
|
|
|
{{#foreach tags}} {{!-- TODO: NOT WORKING --}}
|
|
|
|
<a href="{{url}}" title="{{name}}" class="tag tag-{{id}} {{slug}}">{{name}}</a>
|
|
|
|
{{/foreach}}
|
|
|
|
{{/if}}
|
|
|
|
</i>
|
|
|
|
<hr>
|
2020-11-05 16:14:13 +01:00
|
|
|
</div>
|
|
|
|
<h3>Comments</h3>
|
|
|
|
<div id="remark42"></div>
|
|
|
|
</div>
|
|
|
|
{{/post}}
|
|
|
|
<aside class="mind-post_sidebar unselectable">
|
|
|
|
<div class="mind-post_sidebar-content">
|
2020-11-06 17:35:02 +01:00
|
|
|
{{> "post-card-small"}}
|
2020-11-05 16:14:13 +01:00
|
|
|
</div>
|
|
|
|
</aside>
|
2020-10-30 00:19:49 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</main>
|