fix: footer update note wrapping + indentation

This commit is contained in:
Cory Dransfeldt 2024-09-13 19:32:17 -07:00
parent 5cc4abcbd7
commit 99283e731a
No known key found for this signature in database
5 changed files with 26 additions and 24 deletions

View file

@ -1,9 +1,9 @@
<section class="main-title">
<h1>
{%- if page.url != '/' -%}
<a href="/" tabindex="0">{{ globals.site_name }}</a>
<a href="/" tabindex="0">{{ globals.site_name }}</a>
{%- else -%}
{{ globals.site_name }}
{{ globals.site_name }}
{%- endif -%}
</h1>
{% render "partials/nav/menu.liquid", page:page, nav:nav %}

View file

@ -7,17 +7,17 @@
</h2>
</div>
{%- for post in posts -%}
<article class="h-entry">
<time class="dt-published" datetime="{{ post.date }}">
{{ post.date | date: "%B %e, %Y" }}
</time>
<a href="{{ post.slug }}">
<h3>{{ post.title }}</h3>
</a>
<span class="p-author h-card hidden">{{ globals.site_name }}</span>
<div class="p-summary hidden">{{ post.data.post_excerpt }}</div>
{{ post.description | normalize_whitespace | markdown | truncatewords: 50 }}
</article>
<article class="h-entry">
<time class="dt-published" datetime="{{ post.date }}">
{{ post.date | date: "%B %e, %Y" }}
</time>
<a href="{{ post.slug }}">
<h3>{{ post.title }}</h3>
</a>
<span class="p-author h-card hidden">{{ globals.site_name }}</span>
<div class="p-summary hidden">{{ post.data.post_excerpt }}</div>
{{ post.description | normalize_whitespace | markdown | truncatewords: 50 }}
</article>
{%- endfor -%}
{%- if postType != 'featured' -%}
<a class="icon-link" href="/posts">View all posts {% tablericon "arrow-right" "View all posts" %}</a>