chore: bug fixes, organization, metadata
This commit is contained in:
parent
ebdcf8021e
commit
63e8c2ec30
21 changed files with 54 additions and 78 deletions
35
src/pages/secondary/blogroll.html
Normal file
35
src/pages/secondary/blogroll.html
Normal file
|
@ -0,0 +1,35 @@
|
|||
---
|
||||
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.feed -%}
|
||||
<a href="{{ blog.feed }}">{% tablericon "rss" "Subscribe via RSS" %}</a>
|
||||
{%- else -%}
|
||||
—
|
||||
{%- endif -%}
|
||||
{%- if blog.newsletter -%}
|
||||
• <a href="{{ blog.newsletter }}">{% tablericon "mail-plus" "Newsletter subscription" %}</a>
|
||||
{%- endif -%}
|
||||
{%- if blog.json -%}
|
||||
• <a href="{{ blog.json }}">{% tablericon "json" "Subscribe via JSON" %}</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>
|
Reference in a new issue