chore: organize + clean up
This commit is contained in:
parent
ddc2e30375
commit
95581a079c
27 changed files with 172 additions and 15 deletions
|
@ -43,6 +43,13 @@ for = "/links.xml"
|
|||
Content-Type = "application/xml; charset=utf-8"
|
||||
x-content-type-options = "nosniff"
|
||||
|
||||
[[headers]]
|
||||
for = "/books.xml"
|
||||
|
||||
[headers.values]
|
||||
Content-Type = "application/xml; charset=utf-8"
|
||||
x-content-type-options = "nosniff"
|
||||
|
||||
[[headers]]
|
||||
for = "/follow.xml"
|
||||
|
||||
|
|
|
@ -21,4 +21,4 @@ permalink: 404.html
|
|||
</div>
|
||||
</div>
|
||||
<hr />
|
||||
{% include "popular-posts.liquid" %}
|
||||
{% include "partials/popular-posts.liquid" %}
|
||||
|
|
|
@ -6,7 +6,8 @@ module.exports = async function () {
|
|||
title: read.title,
|
||||
author: read.authors.length > 1 ? read.authors.join(', ') : read.authors.pop(),
|
||||
cover: read.thumbnail.replace('https://books.google.com', 'https://books.coryd.dev'),
|
||||
link: `https://duckduckgo.com/?q=!olib%20${read.isbn}`,
|
||||
link: `https://openlibrary.org/search?q=${read.isbn}`,
|
||||
finished: read.dateFinished
|
||||
}
|
||||
})
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
layout: main
|
||||
---
|
||||
|
||||
{% include "header.liquid" %}
|
||||
{% include "partials/header.liquid" %}
|
||||
|
||||
<div class="pt-8 prose dark:prose-invert hover:prose-a:text-blue-500 max-w-full">
|
||||
{{ content }}
|
||||
|
|
18
src/_includes/feeds/books.liquid
Normal file
18
src/_includes/feeds/books.liquid
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml-stylesheet href="/assets/feeds/books.xsl" type="text/xsl" media="screen"?>
|
||||
<feed xmlns="http://www.w3.org/2005/Atom">
|
||||
<title>
|
||||
{% block title %}Books • Cory Dransfeldt{% endblock %}
|
||||
</title>
|
||||
<link href="{{ pkg.homepage }}/books.xml" rel="self" />
|
||||
<link href="{{ pkg.homepage }}/" />
|
||||
<link rel="hub" href="https://pubsubhubbub.superfeedr.com/" />
|
||||
<updated>{% block update %}{{ books[0].finished | 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>
|
|
@ -6,5 +6,5 @@ layout: base
|
|||
<main class="flex-1 w-10/12 max-w-screen-sm md:max-w-screen-md mx-auto">
|
||||
{{ content }}
|
||||
</main>
|
||||
{% include "footer.liquid" %}
|
||||
{% include "partials/footer.liquid" %}
|
||||
</div>
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
layout: main
|
||||
---
|
||||
{% include "header.liquid" %}
|
||||
{% include "partials/header.liquid" %}
|
||||
<h2 class="m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
|
||||
{% heroicon "outline" "clock" "Currently" "height=28" %}
|
||||
<div class="ml-1">Currently</div>
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
<h1 class="text-2xl md:text-3xl font-black leading-tight pb-5 md:pb-0">
|
||||
<a class="text-gray-700 hover:text-purple-500 dark:text-gray-200 dark:hover:text-purple-500" href="/">{{ site.title }}</a>
|
||||
</h1>
|
||||
{% include "nav.liquid" %}
|
||||
{% include "partials/nav.liquid" %}
|
||||
</div>
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
layout: main
|
||||
---
|
||||
{% include "header.liquid" %}
|
||||
{% include "partials/header.liquid" %}
|
||||
<article class="h-entry" data-pagefind-body>
|
||||
<h2 class="p-name text-xl md:text-2xl font-black leading-tight dark:text-gray-200 pt-8" data-pagefind-meta="title">{{ title }}</h2>
|
||||
<span class="p-author h-card hidden">{{ site.title }}</span>
|
||||
|
@ -11,7 +11,7 @@ layout: main
|
|||
{{ content }}
|
||||
</div>
|
||||
</article>
|
||||
{% include "post-tags.liquid" %}
|
||||
{% include "webmentions.liquid" %}
|
||||
{% include "author.liquid" %}
|
||||
{% include "popular-posts.liquid" %}
|
||||
{% include "partials/post-tags.liquid" %}
|
||||
{% include "partials/webmentions.liquid" %}
|
||||
{% include "partials/author.liquid" %}
|
||||
{% include "partials/popular-posts.liquid" %}
|
91
src/assets/feeds/books.xsl
Normal file
91
src/assets/feeds/books.xsl
Normal file
|
@ -0,0 +1,91 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xsl:stylesheet
|
||||
version="3.0"
|
||||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<xsl:output method="html" version="4.0" encoding="UTF-8" indent="yes"/>
|
||||
<xsl:template match="/">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>
|
||||
<xsl:value-of select="atom:feed/atom:title"/>
|
||||
</title>
|
||||
<link href="/assets/styles/tailwind.css" rel="stylesheet"/>
|
||||
<link href="/assets/styles/index.css" rel="stylesheet"/>
|
||||
<link href="/assets/img/favicon/favicon-16x16.png" rel="icon" type="image/x-icon"/>
|
||||
<link href="/assets/img/favicon/favicon-32x32.png" rel="icon" type="image/png" sizes="32x32"/>
|
||||
<link href="/assets/img/favicon/apple-touch-icon.png" rel="apple-touch-icon"/>
|
||||
<script src="/assets/scripts/isDarkMode.js">''</script>
|
||||
<link rel="me" href="https://social.lol/@cory"/>
|
||||
</head>
|
||||
<body class="dark:text-white dark:bg-gray-900 font-sans text-gray-800">
|
||||
<div class="min-h-screen flex flex-col">
|
||||
<main class="flex-1 w-10/12 max-w-screen-sm md:max-w-screen-md mx-auto">
|
||||
<div class="flex flex-col md:flex-row md:items-center md:justify-between md:pt-10 pt-5">
|
||||
<h1 class="font-black leading-tight md:pb-0 md:text-3xl pb-5 text-2xl">Links • Cory Dransfeldt</h1>
|
||||
<a href="/">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
|
||||
stroke="currentColor"
|
||||
class="inline w-6 h-6 outline-current text-gray-700 hover:text-purple-500 dark:text-gray-200 dark:hover:text-purple-400">
|
||||
<path stroke-linecap="round" stroke-linejoin="round"
|
||||
d="M2.25 12l8.954-8.955c.44-.439 1.152-.439 1.591 0L21.75 12M4.5 9.75v10.125c0 .621.504 1.125 1.125 1.125H9.75v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21h4.125c.621 0 1.125-.504 1.125-1.125V9.75M8.25 21h8.25"/>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
<div class="pt-8 prose dark:prose-invert hover:prose-a:text-blue-500 max-w-full">
|
||||
<div class="dark:text-white text-gray-800">
|
||||
<h2
|
||||
class="font-black leading-tight m-0 md:text-2xl text-xl tracking-normal mb-4 flex flex-row items-center text-gray-800 dark:text-gray-200">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
|
||||
stroke="currentColor" class="w-10 h-10 mr-1">
|
||||
<path stroke-linecap="round" stroke-linejoin="round"
|
||||
d="M12.75 19.5v-.75a7.5 7.5 0 00-7.5-7.5H4.5m0-6.75h.75c7.87 0 14.25 6.38 14.25 14.25v.75M6 18.75a.75.75 0 11-1.5 0 .75.75 0 011.5 0z"/>
|
||||
</svg>
|
||||
Feed preview • books
|
||||
</h2>
|
||||
<p>A feed of my recently read books.</p>
|
||||
<p>
|
||||
<xsl:value-of select="atom:feed/atom:description"/>
|
||||
</p>
|
||||
</div>
|
||||
<ul class="mb-8">
|
||||
<xsl:apply-templates select="atom:feed/atom:entry"/>
|
||||
</ul>
|
||||
</div>
|
||||
<footer
|
||||
class="prose pb-8 mt-4 text-gray-800 dark:text-white border-t border-gray-200 dark:border-gray-700 ">
|
||||
<div>
|
||||
<p class="mb-0">
|
||||
<strong class="text-gray-800 dark:text-gray-200">This is a web feed,</strong>
|
||||
also known as an RSS or Atom feed.
|
||||
</p>
|
||||
<p class="mt-0">
|
||||
<strong class="text-gray-800 dark:text-gray-200">Subscribe</strong>
|
||||
by copying the URL from the address bar into your newsreader.
|
||||
</p>
|
||||
</div>
|
||||
<small>Visit <a href="https://aboutfeeds.com">About Feeds</a> to get started with newsreaders and
|
||||
subscribing. It's free.
|
||||
</small>
|
||||
</footer>
|
||||
</main>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</xsl:template>
|
||||
<xsl:template match="atom:feed/atom:entry">
|
||||
<li>
|
||||
<a
|
||||
class="no-underline text-gray-800 hover:text-purple-400 dark:text-gray-200 dark:hover:text-purple-400 leading-tight m-0 cursor-pointer">
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="atom:link/@href"/>
|
||||
</xsl:attribute>
|
||||
<xsl:value-of select="atom:title"/>
|
||||
</a>
|
||||
•
|
||||
<xsl:value-of select="atom:updated"/>
|
||||
</li>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
|
@ -46,7 +46,7 @@
|
|||
Feed preview • links
|
||||
</h2>
|
||||
<p>Recently read and favorited links
|
||||
<a href="https://www.pinboard.in/api/">sourced from my Instapaper likes.</a>
|
||||
<a href="https://instapaper.com">sourced from my Instapaper likes.</a>
|
||||
</p>
|
||||
<p>
|
||||
<xsl:value-of select="atom:feed/atom:description"/>
|
||||
|
|
|
@ -26,4 +26,5 @@ class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 m
|
|||
|
||||
- Posts ([RSS](/feed.xml) • [JSON](/feed.json)): a feed of all of my blog posts.
|
||||
- Links ([RSS](/links.xml) • [JSON](/links.json)): a feed of links I've liked on Instapaper.
|
||||
- Books ([RSS](/books.xml) • [JSON](/books.json)): a feed of books I've finished reading.
|
||||
- Follow ([RSS](/follow.xml) • [JSON](/follow.json)): a feed of my web activity comprised of blog posts, links, movies and books (using the same data sources as [my now page](/now)).
|
||||
|
|
19
src/feeds/books.liquid
Normal file
19
src/feeds/books.liquid
Normal file
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
layout: null
|
||||
permalink: /books.xml
|
||||
---
|
||||
{% layout "./_includes/feeds/books.liquid" %}
|
||||
{% block title %}Books • Cory Dransfeldt{% endblock %}
|
||||
{% block self %}books.xml{% endblock %}
|
||||
{% block update %}{{ articles[0].time | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %}
|
||||
{% block entries %}
|
||||
{% for book in books %}
|
||||
<entry>
|
||||
<title>{{ book.title | escape }}</title>
|
||||
<link href="{{book.link}}" />
|
||||
<updated>{{ book.finished | date: "%m.%d.%Y" }}</updated>
|
||||
<id>{{ book.link }}</id>
|
||||
<content type="html"></content>
|
||||
</entry>
|
||||
{% endfor %}
|
||||
{% endblock %}
|
20
src/feeds/json/books.11ty.liquid
Normal file
20
src/feeds/json/books.11ty.liquid
Normal file
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
permalink: '/books.json'
|
||||
---
|
||||
{
|
||||
"version": "https://jsonfeed.org/version/1",
|
||||
"title": "Books • Cory Dransfeldt",
|
||||
"icon": "https://coryd.dev/static/images/avatar.webp",
|
||||
"home_page_url": "https://coryd.dev",
|
||||
"feed_url": "https://coryd.dev/books.json",
|
||||
"items": [{% for book in books %}
|
||||
{
|
||||
"id": "{{ book.link }}",
|
||||
"title": "{{ book.title | escape }}",
|
||||
"url": "{{ book.link }}",
|
||||
"content_text": "",
|
||||
"date_published": "{{ book.finished | date: "%Y-%m-%dT%H:%M:%S-08:00" }}"
|
||||
}{% if not forloop.last %},{% endif %}
|
||||
{% endfor %}
|
||||
]
|
||||
}
|
|
@ -22,7 +22,7 @@ meta:
|
|||
src: https://coryd.dev/assets/img/avatar.webp
|
||||
---
|
||||
|
||||
{% if pagination.pageNumber == 0 %}{% include "now-topper.liquid" %}{% endif %} {% for post in pagination.items %} {% if post.data.published %}
|
||||
{% if pagination.pageNumber == 0 %}{% include "partials/now-topper.liquid" %}{% endif %} {% for post in pagination.items %} {% if post.data.published %}
|
||||
<article class="h-entry">
|
||||
<div
|
||||
class="mb-8 border-b border-gray-200 pb-4 text-gray-800 dark:border-gray-700 dark:text-white"
|
||||
|
@ -46,4 +46,4 @@ meta:
|
|||
</div>
|
||||
</div>
|
||||
</article>
|
||||
{% endif %} {% endfor %} {% include "paginator.liquid" %}
|
||||
{% endif %} {% endfor %} {% include "partials/paginator.liquid" %}
|
||||
|
|
|
@ -36,4 +36,4 @@ meta:
|
|||
</style>
|
||||
<div id="search" class="search"></div>
|
||||
<script src="https://coryd.dev/_pagefind/pagefind-ui.js" onload="new PagefindUI({ element: '#search', showImages: false });"></script>
|
||||
{% include "popular-posts.liquid" %}
|
||||
{% include "partials/popular-posts.liquid" %}
|
||||
|
|
Reference in a new issue