-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
page.hbs
32 lines (24 loc) · 949 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
31
32
{{!< default}}
{{#contentFor 'htmlLang'}}{{@site.locale}}{{/contentFor}}
{{#contentFor 'styles'}}
<link rel="prefetch" href="https://mindsers.blog/">
<link rel="prerender" href="https://mindsers.blog/">
<link rel='stylesheet' type='text/css' href='{{asset 'css/pages.css'}}' />
{{/contentFor}}
{{#contentFor 'title'}}{{meta_title}} - {{@site.title}}{{/contentFor}}
{{#post}}
<article class="mds-page {{post_class}}">
{{#match @page.show_title_and_feature_image}}
<header class="mds-header mds-canvas">
<h1 class="mds-title">{{title}}</h1>
</header>
{{/match}}
<div class="mds-content mds-canvas" {{#has tag="#lang-fr"}}lang="fr"{{/has}}>
{{content}}
</div>
</article>
{{/post}}
{{#contentFor "scripts"}}
<script src="https://unpkg.com/shiki" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script type="module" src="{{asset 'js/post.js'}}"></script>
{{/contentFor}}