fix: link titles

This commit is contained in:
Cory Dransfeldt 2023-12-28 08:35:56 -08:00
parent 8aa93625ac
commit 2af1c396a9
No known key found for this signature in database
4 changed files with 8 additions and 25 deletions

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "4.0.0",
"version": "4.0.1",
"description": "The source for my personal site, blog and portfolio. Built using 11ty and hosted on Netlify.",
"type": "module",
"scripts": {

View file

@ -467,12 +467,6 @@ article time {
line-height: var(--line-height-sm);
}
article .read-more > svg {
height: 1rem;
width: 1rem;
margin-left: .125rem;
}
/* search */
.pagefind-ui__search-input {
font-weight: 400 !important;
@ -958,7 +952,6 @@ textarea:focus {
}
/* flex layout */
.read-more,
.pagination,
article h2,
.now__section--header,

View file

@ -24,19 +24,13 @@ meta:
{% if pagination.pageNumber == 0 %}{% include "partials/now/topper.liquid" status:status %}{% endif %} {% for post in pagination.items %} {% if post.data.published %}
<article class="h-entry">
<a class="no-underline" href="{{ post.url }}">
<h2>
{{ post.data.title }}
</h2>
</a>
<span class="p-author h-card hidden">{{ meta.siteName }}</span>
<time class="dt-published" datetime="{{ post.date }}">
{{ post.date | date: "%m.%Y" }}
</time>
<p class="p-summary">{{ post.data.post_excerpt | markdown }}</p>
<a class="no-underline read-more" href="{{ post.url }}">
Read more
{% tablericon "arrow-right" "Read more" %}
<a class="no-underline" href="{{ post.url }}">
<h2>{{ post.data.title }}</h2>
</a>
<span class="p-author h-card hidden">{{ meta.siteName }}</span>
<time class="dt-published" datetime="{{ post.date }}">
{{ post.date | date: "%m.%Y" }}
</time>
<p class="p-summary">{{ post.data.post_excerpt | markdown }}</p>
</article>
{% endif %} {% endfor %} {% include "partials/paginator.liquid" %}

View file

@ -21,9 +21,5 @@ templateEngineOverride: liquid,md
{%- if post.data.post_excerpt %}
<p class="p-summary">{{ post.data.post_excerpt | markdown }}</p>
{% endif -%}
<a class="no-underline read-more" href="{{ post.url }}">
Read more
{% tablericon "arrow-right" "Read more" %}
</a>
</article>
{% endfor %}