fix: footer update note wrapping + indentation
This commit is contained in:
parent
5cc4abcbd7
commit
99283e731a
5 changed files with 26 additions and 24 deletions
|
@ -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 %}
|
||||
|
|
|
@ -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>
|
||||
|
|
Reference in a new issue