fix: link urls

This commit is contained in:
Cory Dransfeldt 2024-04-17 15:11:25 -07:00
parent 8d193cac86
commit 53f08e6a01
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "12.0.2", "version": "12.0.3",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -6,7 +6,7 @@
<ul class="link-list"> <ul class="link-list">
{% for link in links limit: 5 %} {% for link in links limit: 5 %}
<li> <li>
<a href="{{ link.url }}" title="{{ link.data.title | escape }}"> <a href="{{ link.data.link }}" title="{{ link.data.title | escape }}">
{{ link.data.title }} {{ link.data.title }}
</a> </a>
</li> </li>

View file

@ -8,7 +8,7 @@ pagination:
<ul class="link-list reduced-spacing"> <ul class="link-list reduced-spacing">
{% for link in pagination.items %} {% for link in pagination.items %}
<li> <li>
<a href="{{ link.url }}" title="{{ link.data.title | escape }}"> <a href="{{ link.data.link }}" title="{{ link.data.title | escape }}">
{{ link.data.title }} {{ link.data.title }}
</a> </a>
</li> </li>