add timestamps to the recent blog posts section

This commit is contained in:
zyl 2023-11-14 23:23:54 -08:00
parent 04ebe92225
commit 86ad4c7d0b
No known key found for this signature in database
GPG key ID: 8611B896D1AAFAF2
2 changed files with 5 additions and 0 deletions

View file

@ -109,6 +109,10 @@ abbr {
content: ""; content: "";
} }
} }
.timestamp {
font-style: italic;
}
} }
} }

View file

@ -5,6 +5,7 @@
{{#each resources}} {{#each resources}}
<div class="post"> <div class="post">
<p class="title"><a href="/blog/{{id}}">{{title}}</a></p> <p class="title"><a href="/blog/{{id}}">{{title}}</a></p>
<p class="timestamp">{{timestamp}}</p>
<p class="short-desc">{{desc}}</p> <p class="short-desc">{{desc}}</p>
</div> </div>
{{/each}} {{/each}}