This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/pages/secondary/blogroll.html
2024-06-09 20:37:45 -07:00

36 lines
No EOL
1.4 KiB
HTML

---
title: Blogroll
layout: default
permalink: /blogroll.html
description: These are awesome blogs that I enjoy and you may enjoy too.
---
<h2 class="page-header">{{ title }}</h2>
<p>You can <a onclick="if (typeof plausible === 'function') { plausible('OPML download', { props: { action: 'download' } }) }" href="/blogroll.opml">Download OPML</a>
download an OPML file</a> containing all of these feeds and import them into your RSS reader.</p>
<table>
<tr>
<th>Name</th>
<th>Link</th>
<th>Subscribe</th>
</tr>
{% for blog in blogroll %}
<tr>
<td>{{ blog.name }}</td>
<td><a href="{{ blog.url }}">{{ blog.url | replace: "https://", "" }}</a></td>
<td class="blog-roll-icons">
{%- if blog.rss_feed -%}
<a href="{{ blog.rss_feed }}">{% tablericon "rss" "Subscribe via RSS" %}</a>
{%- else -%}
{%- endif -%}
{%- if blog.json_feed -%}
&middot; <a href="{{ blog.json_feed }}">{% tablericon "json" "Subscribe via JSON" %}</a>
{%- endif -%}
{%- if blog.newsletter -%}
&middot; <a href="{{ blog.newsletter }}">{% tablericon "mail-plus" "Newsletter subscription" %}</a>
{%- endif -%}
</td>
</tr>
{% endfor %}
</table>
<p>Head on over to <a href="https://blogroll.org">blogroll.org</a> to find more blogs to follow or search for feeds using <a href="https://feedle.world">feedle</a>.</p>