35 lines
No EOL
1.3 KiB
HTML
35 lines
No EOL
1.3 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="clicky?.log('/blogroll','OPML download', 'download');" href="/blogroll.opml">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 -%}
|
|
• <a href="{{ blog.json_feed }}">{% tablericon "json" "Subscribe via JSON" %}</a>
|
|
{%- endif -%}
|
|
{%- if blog.newsletter -%}
|
|
• <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> |