chore: link consistency
This commit is contained in:
parent
3869f4fa35
commit
3c9c10f8f9
15 changed files with 25 additions and 33 deletions
|
@ -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