chore: pinboard -> instapaper
This commit is contained in:
parent
faa7e6c5b3
commit
b8b7dc8da4
15 changed files with 16 additions and 203 deletions
|
@ -1,18 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml-stylesheet href="/assets/atom-feed-links.xsl" type="text/xsl" media="screen"?>
|
||||
<feed xmlns="http://www.w3.org/2005/Atom">
|
||||
<title>
|
||||
{% block title %}Links • Cory Dransfeldt{% endblock %}
|
||||
</title>
|
||||
<link href="{{ pkg.homepage }}/links.xml" rel="self" />
|
||||
<link href="{{ pkg.homepage }}/" />
|
||||
<link rel="hub" href="https://pubsubhubbub.superfeedr.com/" />
|
||||
<updated>{% block update %}{{ articles[0].date | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %}</updated>
|
||||
<id>{{ site.url }}</id>
|
||||
<author>
|
||||
<name>{{ site.name }}</name>
|
||||
<email>{{ site.email }}</email>
|
||||
</author>
|
||||
<generator uri="https://11ty.dev" version="{{ eleventy.version }}">{{ eleventy.generator }}</generator>
|
||||
{% block entries %}{% endblock %}
|
||||
</feed>
|
|
@ -5,7 +5,7 @@
|
|||
{% include "icons/mastodon.liquid" %}
|
||||
{% include "icons/lastfm.liquid" %}
|
||||
{% include "icons/musicbrainz.liquid" %}
|
||||
{% include "icons/pinboard.liquid" %}
|
||||
{% include "icons/instapaper.liquid" %}
|
||||
{% include "icons/letterboxd.liquid" %}
|
||||
{% include "icons/trakt.liquid" %}
|
||||
{% include "icons/oku.liquid" %}
|
||||
|
|
13
src/_includes/icons/instapaper.liquid
Normal file
13
src/_includes/icons/instapaper.liquid
Normal file
|
@ -0,0 +1,13 @@
|
|||
{% if site.instapaper != "" %}
|
||||
<a
|
||||
href={{ site.instapaper }}
|
||||
rel="me"
|
||||
title="Instapaper">
|
||||
<svg
|
||||
class="inline w-6 h-6 fill-current text-gray-700 hover:text-purple-500 dark:text-gray-200 dark:hover:text-purple-500"
|
||||
role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M14.766 20.259c0 1.819.271 2.089 2.934 2.292V24H6.301v-1.449c2.666-.203 2.934-.473 2.934-2.292V3.708c0-1.784-.27-2.089-2.934-2.292V0h11.398v1.416c-2.662.203-2.934.506-2.934 2.292v16.551z"/>
|
||||
<title>Instapaper</title></svg>
|
||||
</a>
|
||||
{% endif %}
|
|
@ -1,13 +0,0 @@
|
|||
{% if site.pinboard != "" %}
|
||||
<a
|
||||
href={{ site.pinboard }}
|
||||
rel="me"
|
||||
title="Pinboard">
|
||||
<svg
|
||||
class="inline w-6 h-6 fill-current text-gray-700 hover:text-purple-500 dark:text-gray-200 dark:hover:text-purple-500"
|
||||
role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Pinboard</title>
|
||||
<path
|
||||
d="M13.352 14.585l-4.509 4.614.72-4.062L3.428 7.57 0 7.753 7.58 0v2.953l7.214 6.646 4.513-1.105-4.689 4.982L24 24l-10.648-9.415z"/>
|
||||
<title>Pinboard</title></svg>
|
||||
</a>
|
||||
{% endif %}
|
|
@ -105,22 +105,6 @@ layout: main
|
|||
</ul>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if articles.size > 0 %}
|
||||
<h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-6 mb-4">
|
||||
Reading: articles
|
||||
</h2>
|
||||
<div>
|
||||
<ul class="list-inside list-disc pl-5 md:pl-10">
|
||||
{% for article in articles %}
|
||||
<li class="mt-1.5 mb-2">
|
||||
<a href="{{article.href}}" title="{{article.description | escape}}">
|
||||
{{ article.description }}
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if movies.size > 0 %}
|
||||
<h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-6 mb-4">
|
||||
Watching: movies
|
||||
|
|
Reference in a new issue