27 lines
No EOL
739 B
Handlebars
27 lines
No EOL
739 B
Handlebars
{{!< default}}
|
|
|
|
{{#post}}
|
|
|
|
<header class="gh-header">
|
|
<h1>{{title}}</h1>
|
|
<div class="gh-post-meta">
|
|
{{primary_author.name}} - <time datetime="{{date format="YYYY-MM-DD"}}">{{date format="D MMM YYYY"}}</time>
|
|
</div>
|
|
{{#if feature_image}}
|
|
<img class="gh-feature-image"
|
|
srcset="{{img_url feature_image size="s"}} 300w,
|
|
{{img_url feature_image size="m"}} 600w,
|
|
{{img_url feature_image size="l"}} 1000w,
|
|
{{img_url feature_image size="xl"}} 2000w"
|
|
sizes="(min-width: 2000px) 2000px"
|
|
src="{{img_url feature_image size="xl"}}"
|
|
alt="{{title}}"
|
|
/>
|
|
{{/if}}
|
|
</header>
|
|
|
|
<section class="gh-content">
|
|
{{content}}
|
|
</section>
|
|
|
|
{{/post}} |