fix: styles

This commit is contained in:
Cory Dransfeldt 2024-06-01 09:43:06 -07:00
parent 460a50f88c
commit abacd51cde
No known key found for this signature in database

View file

@ -8,23 +8,21 @@ permalink: "/posts/{{ post.date | date: '%Y' }}/{{ post.title | slugify | downca
schema: blog schema: blog
--- ---
{%- capture postUrl %}{{ meta.url }}{{ post.url }}{% endcapture -%} {%- capture postUrl %}{{ meta.url }}{{ post.url }}{% endcapture -%}
<div class="default-wrapper"> <article class="h-entry">
<article class="h-entry"> <div class="flex-centered gap-xs icon-small icon-light">
<div class="flex-centered gap-xs icon-small icon-light"> {% tablericon "calendar-month" "Date" %}
{% tablericon "calendar-month" "Date" %} <time class="dt-published" datetime="{{ date }}">
<time class="dt-published" datetime="{{ date }}"> {{ post.date | date: "%B %e, %Y" }}
{{ post.date | date: "%B %e, %Y" }} </time>
</time> </div>
</div> <h2 class="p-name">{{ post.title }}</h2>
<h2 class="p-name">{{ post.title }}</h2> <span class="p-author h-card hidden">{{ meta.author }}</span>
<span class="p-author h-card hidden">{{ meta.author }}</span> <div class="p-summary hidden">{{ post.description }}</div>
<div class="p-summary hidden">{{ post.description }}</div> <div class="e-content">
<div class="e-content"> {% render "partials/banners/old-post.liquid", date:post.date %}
{% render "partials/banners/old-post.liquid", date:post.date %} {{ post.content | markdown }}
{{ post.content | markdown }} {% render "partials/posts/blocks.liquid", blocks:post.blocks %}
{% render "partials/posts/blocks.liquid", blocks:post.blocks %} </div>
</div> </article>
</article>
</div>
{% render "partials/widgets/mastodon-post.liquid", postUrl:postUrl, linkPosts:linkPosts %} {% render "partials/widgets/mastodon-post.liquid", postUrl:postUrl, linkPosts:linkPosts %}
{% render "partials/widgets/addon-links.liquid", posts:posts, analytics:analytics, links:links %} {% render "partials/widgets/addon-links.liquid", posts:posts, analytics:analytics, links:links %}