-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpost.hbs
24 lines (22 loc) · 921 Bytes
/
post.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
{{!< default}}
{{#contentFor "title"}}{{meta_title}}{{/contentFor}}
<div class="content-area">
<main class="site-main">
<div class="container pb-24">
<div class="bg-red-100 border border-red-400 text-red-700 px-4 py-3 rounded relative" role="alert">
<strong class="font-bold">Disclaimer</strong>
<span class="block sm:inline">Posts before 31st March 2024 may be incomplete or contain errors. You can refer to <a href="https://old.advisory.sg">old.advisory.sg</a> for the original article.</span>
</div>
</div>
{{#post}}
{{> content width="wide"}}
{{/post}}
{{#is "post"}}
<div id="content-dropdown-enable"></div>
{{#if @custom.show_related_posts}}
{{> related}}
{{/if}}
{{> comment}}
{{/is}}
</main>
</div>