chore: link consistency
This commit is contained in:
parent
3869f4fa35
commit
3c9c10f8f9
15 changed files with 25 additions and 33 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "7.3.0",
|
||||
"version": "7.4.0",
|
||||
"description": "The source for my personal site. Built using 11ty.",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
|
@ -3,5 +3,5 @@
|
|||
{% endcapture %}
|
||||
<style>{{ css }}</style>
|
||||
<div class="banner npm">
|
||||
<p>{% tablericon "brand-npm" "NPM package" %} <a class="no-underline" href="{{ url }}">You can take a look at this package on NPM</a> or install it by running <code>{{ command }}</code>.</p>
|
||||
<p>{% tablericon "brand-npm" "NPM package" %} <a href="{{ url }}">You can take a look at this package on NPM</a> or install it by running <code>{{ command }}</code>.</p>
|
||||
</div>
|
|
@ -7,7 +7,7 @@
|
|||
{% for album in albumReleases %}
|
||||
<li>
|
||||
<strong>{{ album.date | readableDate }}: </strong>
|
||||
<a class="no-underline" href="https://{{album.url}}" title="{{album.title | escape}}">
|
||||
<a href="https://{{album.url}}" title="{{album.title | escape}}">
|
||||
{{album.title}}
|
||||
</a>
|
||||
</li>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<ul class="link__list">
|
||||
{% for link in links limit: 5 %}
|
||||
<li>
|
||||
<a class="no-underline" href="{{link.url}}" title="{{link.title | escape}}">
|
||||
<a href="{{link.url}}" title="{{link.title | escape}}">
|
||||
{{ link.title }}
|
||||
</a>
|
||||
</li>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{% assign filteredTags = tags | filterTags %}
|
||||
{% for tag in filteredTags limit: 10 %}
|
||||
<a class="tag no-underline" href="/tags/{{ tag | downcase }}" data-pagefind-filter="tags">{{ tag | formatTag }}</a>
|
||||
<a class="tag" href="/tags/{{ tag | downcase }}" data-pagefind-filter="tags">{{ tag | formatTag }}</a>
|
||||
{% endfor %}
|
|
@ -1,5 +1,5 @@
|
|||
<div class="webring__wrapper">
|
||||
<a class="no-underline" href="https://cs.sjoy.lol">
|
||||
<a href="https://cs.sjoy.lol">
|
||||
<h3 class="text--centered">CSS JOY Webring</h3>
|
||||
</a>
|
||||
<div class="webring__centered flex--centered">
|
||||
|
|
|
@ -49,7 +49,6 @@ button:not(.theme__toggle, .share, .pagefind-ui__search-clear) {
|
|||
background-color: var(--accent-color);
|
||||
appearance: none;
|
||||
border: none;
|
||||
text-decoration: none;
|
||||
transition-property: background-color;
|
||||
}
|
||||
|
||||
|
|
|
@ -35,7 +35,6 @@
|
|||
font-size: var(--font-size-2xl);
|
||||
line-height: var(--line-height-2xl);
|
||||
font-weight: 900;
|
||||
text-decoration: none;
|
||||
margin: 0;
|
||||
transition-property: color;
|
||||
transition-timing-function: var(--transition-ease-in-out);
|
||||
|
@ -48,6 +47,10 @@
|
|||
color: var(--accent-color-hover);
|
||||
}
|
||||
|
||||
.pagefind-ui__results-area {
|
||||
margin-bottom: var(--sizing-base);
|
||||
}
|
||||
|
||||
:is(input[type="text"], input[type="search"]).pagefind-ui__search-input {
|
||||
padding-left: 2.375rem !important;
|
||||
padding-top: 0 !important;
|
||||
|
@ -73,7 +76,6 @@
|
|||
.pagefind-ui__result-link {
|
||||
font-size: var(--font-size-2xl) !important;
|
||||
color: var(--accent-color) !important;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
.pagefind-ui__result-link:hover,
|
||||
|
@ -90,7 +92,6 @@
|
|||
margin: 0 var(--sizing-xs) var(--sizing-md) 0;
|
||||
cursor: pointer !important;
|
||||
height: unset !important;
|
||||
text-decoration: none;
|
||||
background-color: var(--accent-color) !important;
|
||||
transition-property: background-color;
|
||||
transition-timing-function: var(--transition-ease-in-out);
|
||||
|
|
|
@ -58,6 +58,7 @@ blockquote {
|
|||
/* links */
|
||||
a {
|
||||
transition-property: color;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a,
|
||||
|
@ -126,10 +127,6 @@ table {
|
|||
border: 1px solid var(--gray-light);
|
||||
}
|
||||
|
||||
table a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
table,
|
||||
th,
|
||||
td {
|
||||
|
@ -282,7 +279,6 @@ footer nav:last-child span:not(.active) {
|
|||
|
||||
:is(.main__title, footer nav:last-child) a {
|
||||
color: var(--text-color);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.highlight-text {
|
||||
|
@ -407,10 +403,6 @@ li {
|
|||
display: none !important;
|
||||
}
|
||||
|
||||
.no-underline {
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
.text--centered {
|
||||
text-align: center !important;
|
||||
}
|
||||
|
|
|
@ -14,14 +14,14 @@ pagination:
|
|||
<time class="dt-published" datetime="{{ post.date }}">
|
||||
{{ post.date | date: "%B %e, %Y" }}
|
||||
</time>
|
||||
<a class="no-underline" href="{{ post.url }}">
|
||||
<a href="{{ post.url }}">
|
||||
<h2 class="flex--centered">{{ post.data.title }}</h2>
|
||||
</a>
|
||||
<div class="text--small">{% render "partials/tags.liquid", tags:post.data.tags %}</div>
|
||||
<span class="p-author h-card hidden">{{ meta.siteName }}</span>
|
||||
<div class="p-summary hidden">{{ post.data.post_excerpt }}</div>
|
||||
{{ post.data.post_excerpt | markdown }}
|
||||
<p><a class="no-underline" href="{{ post.url }}">Read more →</a></p>
|
||||
<p><a href="{{ post.url }}">Read more →</a></p>
|
||||
</article>
|
||||
{% endfor %}
|
||||
{% render "partials/paginator.liquid", pagination:pagination %}
|
|
@ -13,7 +13,7 @@ image: /assets/img/ogi/links.jpg
|
|||
<ul class="link__list">
|
||||
{% for link in pagination.items %}
|
||||
<li>
|
||||
<a class="no-underline" href="{{ link.url }}">{{ link.title }}</a>
|
||||
<a href="{{ link.url }}">{{ link.title }}</a>
|
||||
{% if link.author and link.author != 'undefined' %}by {{ link.author }}{% endif %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
|
|
|
@ -16,8 +16,8 @@ description: 'These are awesome blogs that I enjoy and you may enjoy too.'
|
|||
<div class="blog__banner">
|
||||
<strong>{{ blog.name }}</strong>
|
||||
<div class="meta">
|
||||
<a class="no-underline" href="{{blog.url}}">Website</a>
|
||||
{% if blog.feed %} • <a class="no-underline" href="{{ blog.feed }}">Feed</a>{% endif %}
|
||||
<a href="{{blog.url}}">Website</a>
|
||||
{% if blog.feed %} • <a href="{{ blog.feed }}">Feed</a>{% endif %}
|
||||
</div>
|
||||
{%- if blog.description %}
|
||||
<p>{{ blog.description }}</p>
|
||||
|
|
|
@ -10,10 +10,10 @@ description: 'Referral links for services that I use.'
|
|||
Referral links for services I use. I save some money, and you do as well if you choose to use them.
|
||||
|
||||
<ul class="link__list">
|
||||
<li><a class="no-underline plausible-event-name=NextDNS+referral" href="https://nextdns.io/?from=m56mt3z6">NextDNS</a></li>
|
||||
<li><a class="no-underline plausible-event-name=DNSimple+referral" href="https://dnsimple.com/r/3a7cbb9e15df8f">DNSimple</a></li>
|
||||
<li><a class="no-underline plausible-event-name=bunny+referral" href="https://bunny.net?ref=revw3mehej">Bunny.net</a></li>
|
||||
<li><a class="no-underline plausible-event-name=Feedpress+referral" href="https://feedpress.com/?affid=34370">Feedpress</a></li>
|
||||
<li><a class="no-underline plausible-event-name=Proton+referral" href="https://pr.tn/ref/X775YX40Z50G">Proton</a></li>
|
||||
<li><a class="no-underline plausible-event-name=DigitalOcean+referral" href="https://m.do.co/c/3635bf99aee2">DigitalOcean</a></li>
|
||||
<li><a class="plausible-event-name=NextDNS+referral" href="https://nextdns.io/?from=m56mt3z6">NextDNS</a></li>
|
||||
<li><a class="plausible-event-name=DNSimple+referral" href="https://dnsimple.com/r/3a7cbb9e15df8f">DNSimple</a></li>
|
||||
<li><a class="plausible-event-name=bunny+referral" href="https://bunny.net?ref=revw3mehej">Bunny.net</a></li>
|
||||
<li><a class="plausible-event-name=Feedpress+referral" href="https://feedpress.com/?affid=34370">Feedpress</a></li>
|
||||
<li><a class="plausible-event-name=Proton+referral" href="https://pr.tn/ref/X775YX40Z50G">Proton</a></li>
|
||||
<li><a class="plausible-event-name=DigitalOcean+referral" href="https://m.do.co/c/3635bf99aee2">DigitalOcean</a></li>
|
||||
</ul>
|
|
@ -13,7 +13,7 @@ image: /assets/img/ogi/stats.jpg
|
|||
{% assign posts = collections.posts | getPopularPosts: analytics %}
|
||||
{% for post in posts limit: 10 %}
|
||||
<li>
|
||||
<a class="no-underline" href="{{post.url}}" title="{{ post.data.title | escape}}">
|
||||
<a href="{{post.url}}" title="{{ post.data.title | escape}}">
|
||||
{{ post.data.title }}
|
||||
</a>
|
||||
</li>
|
||||
|
|
|
@ -15,10 +15,10 @@ eleventyComputed:
|
|||
<time class="dt-published" datetime="{{ post.date }}">
|
||||
{{ post.date | date: "%m.%Y" }}
|
||||
</time>
|
||||
<a class="no-underline" href="{{ post.url }}">
|
||||
<a href="{{ post.url }}">
|
||||
<h2 class="flex--centered">{{ post.data.title }}</h2>
|
||||
</a>
|
||||
<p class="p-summary">{{ post.data.post_excerpt | markdown }}</p>
|
||||
<p><a class="no-underline" href="{{ post.url }}">Read more →</a></p>
|
||||
<p><a href="{{ post.url }}">Read more →</a></p>
|
||||
</article>
|
||||
{% endfor %}
|
Reference in a new issue