-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage.hbs
30 lines (25 loc) · 861 Bytes
/
page.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{{!< default}}
{{#post}}
<article class="article-full {{post_class}}">
<header class="post-header">
{{#if feature_image}}
<img class="post-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="(max-width: 1000px) 1000px, 2000px"
loading="lazy"
src="{{img_url feature_image size="xl"}}"
alt="{{title}}"
/>
{{/if}}
<div class="post-header-content">
<h1 class="post-title">{{title}}</h1>
</div>
</header>
<div class="post-content">
{{content}}
</div>
</article>
{{/post}}