Skip to content

Commit

Permalink
Move linkroll link to the footer
Browse files Browse the repository at this point in the history
  • Loading branch information
helenclx committed Nov 24, 2024
1 parent 95bbe74 commit 58fb386
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
10 changes: 8 additions & 2 deletions src/_includes/global/footer.njk
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,18 @@
<svg class="inline-icon" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M0 64C0 46.3 14.3 32 32 32c229.8 0 416 186.2 416 416c0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96C14.3 96 0 81.7 0 64zM0 416a64 64 0 1 1 128 0A64 64 0 1 1 0 416zM32 160c159.1 0 288 128.9 288 288c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224c-17.7 0-32-14.3-32-32s14.3-32 32-32z"/></svg>RSS Feed
</a>
</li>
{%- for statement in collections.statements -%}
{%- for link in collections["footer links"] %}
<li><a
{% if entry.url == page.url %}aria-current="page"{% endif %}
href="{{ link.url }}"
>{{ link.data.title }}</a></li>
{% endfor %}
{%- for statement in collections.statements -%}
<li><a
{% if entry.url == page.url %}aria-current="page"{% endif %}
href="{{ statement.url }}"
>{{ statement.data.title }}</a></li>
{%- endfor -%}
{%- endfor -%}
</ul>

<p>Made with 💜 by {{ sitemeta.siteAuthor.name }} • 2023–{% currentYear %}</p>
Expand Down
3 changes: 3 additions & 0 deletions src/slashes/footer/footer.11tydata.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default {
tags: "footer links"
}
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
---
title: Linkroll
toc: true
eleventyNavigation:
key: Linkroll
order: 4
---

<p>Throughout my developer journey, I have been inspired by many other developers and tech people with their works and words. Here is my curated list of websites, blogs and podcasts related to tech and software development that I follow.</p>
Expand Down

0 comments on commit 58fb386

Please sign in to comment.