fix: account for js being disabled

This commit is contained in:
Cory Dransfeldt 2024-02-19 12:34:34 -08:00
parent 1690b368fc
commit ca2c7f177d
No known key found for this signature in database
4 changed files with 26 additions and 19 deletions

View file

@ -14,7 +14,10 @@ schema: blog
<h2 class="p-name" data-pagefind-meta="title">{{ title }}</h2>
<span class="p-author h-card hidden">{{ meta.author }}</span>
<div class="flex--centered">
<time class="dt-published" datetime="{{ date }}">{{ date | readableDate }} • </time>
<time class="dt-published" datetime="{{ date }}">
{{ date | readableDate }}
<span class="client-side"> • </span>
</time>
{% render "partials/share-button.liquid", url:postUrl %}
</div>
<div class="p-summary hidden">{{ post_excerpt }}</div>