35 lines
1.0 KiB
Handlebars
Executable File
35 lines
1.0 KiB
Handlebars
Executable File
{{!< default}}
|
|
|
|
{{! The comment above "< default" means - insert everything in this file into
|
|
the {body} of the default.hbs template, which contains our header/footer. }}
|
|
|
|
{{> header}}
|
|
|
|
<main class="content" role="main">
|
|
|
|
<article class="{{post_class}}">
|
|
|
|
|
|
{{! Everything inside the #post tags pulls data from the post }}
|
|
{{#post}}
|
|
|
|
{{! Everything below outputs content of the the post which has been published }}
|
|
<span class="post-meta"><time datetime="{{date format="YYYY-MM-DD"}}">{{date format='DD MMM YYYY' locale="fr-fr"}}</time>
|
|
{{#if tags}}dans {{tags separator=" | "}}{{/if}}<br />
|
|
{{#if updated_at}}
|
|
<time datetime="{{date format="YYYY-MM-DD"}}"> ➡ Mise à jour {{date updated_at format='DD MMM YYYY' locale="fr-fr"}}</time>
|
|
{{/if}}
|
|
</span>
|
|
|
|
<h2 class="post-title">{{{title}}}</h2>
|
|
|
|
<section class="post-content">
|
|
{{content}}
|
|
</section>
|
|
|
|
{{/post}}
|
|
|
|
</article>
|
|
|
|
</main>
|