bingus-blog/partials/post_table.hbs

19 lines
676 B
Handlebars
Raw Permalink Normal View History

2024-08-13 15:53:18 +03:00
<div class="table">
{{#if (and (ne this.created_at null) style.display_dates.creation)}}
2024-08-13 15:53:18 +03:00
<div class="created">written</div>
<div class="created value">{{>span_date dt=this.created_at df=style.date_format}}</div>
2024-08-13 15:53:18 +03:00
{{/if}}
{{#if (and (ne this.modified_at null) style.display_dates.modification)}}
2024-08-13 15:53:18 +03:00
<div class="modified">last modified</div>
<div class="modified value">{{>span_date dt=this.modified_at df=style.date_format}}</div>
2024-08-13 15:53:18 +03:00
{{/if}}
{{#if (gt (len this.tags) 0)}}
<div class="tags">tags</div>
<div class="tags value">
{{#each this.tags}}
<a href="/?tag={{this}}" title="view all posts with this tag">{{this}}</a>
{{/each}}
</div>
{{/if}}
</div>