mirror of
https://github.com/zyllian/webdog.git
synced 2025-01-18 19:52:22 -08:00
22 lines
634 B
Handlebars
22 lines
634 B
Handlebars
<div class="blog-post">
|
|
<h1 class="title">{{title}}</h1>
|
|
<span class="timestamp">published {{timestamp}}</span>
|
|
{{#if draft}}
|
|
<h2>DRAFT</h2>
|
|
{{/if}}
|
|
<div class="header-image-wrapper">
|
|
<p class="short-desc">{{desc}}</p>
|
|
<img class="header-image" src="{{header_image}}" alt="{{header_image_alt}}"
|
|
style="object-fit: {{object_fit}}; object-position: {{object_position}};">
|
|
</div>
|
|
<div class="content">
|
|
{{{content}}}
|
|
</div>
|
|
<hr />
|
|
<h3 class="tags-title">tags</h3>
|
|
<div class="post-tags">
|
|
{{#each tags}}
|
|
<a class="tag" href="/blog/tag/{{this}}">{{this}}</a>{{#unless @last}},{{/unless}}
|
|
{{/each}}
|
|
</div>
|
|
</div>
|