Add link to opml per opml.org

This commit is contained in:
Nathan Upchurch 2024-09-25 13:26:18 -05:00
parent f3c58d09da
commit d0a1785f23
3 changed files with 2 additions and 7 deletions

View File

@ -1,20 +1,13 @@
TODO: TODO:
Integrate est. read time
Integrate % done in article
Investigate pagination for /blog/ Investigate pagination for /blog/
Integrate recipe structured data for recipe type articles Integrate recipe structured data for recipe type articles
No line breaks in inline code fences No line breaks in inline code fences
Style inline code fences with background Style inline code fences with background
Integrate ins plugin Integrate ins plugin
Fediring?
Add "Now" to RSS feed. Add "Now" to RSS feed.
Performance / Accessibility: Performance / Accessibility:
--------------------------------------- ---------------------------------------
Lazy load images Lazy load images
Remove unecessary fonts
change font-display to "swap"
Caching
Add explicit image dimensions? Add explicit image dimensions?

View File

@ -13,6 +13,7 @@ export default {
url: "https://nathanupchurch.com/me", url: "https://nathanupchurch.com/me",
profilePic: "/img/CN20191025_301_Srt_SQUARE_crop.jpg", profilePic: "/img/CN20191025_301_Srt_SQUARE_crop.jpg",
}, },
blogrollUrl: "/blogroll/nathanUpchurchBlogroll.opml",
copyrightNotice: "© Nathan Upchurch 2022 - 2024", copyrightNotice: "© Nathan Upchurch 2022 - 2024",
defaultPostImageURL: "/img/logo_post.svg", defaultPostImageURL: "/img/logo_post.svg",
defaultPostImageAlt: "The logo for this blog: a capital letter N.", defaultPostImageAlt: "The logo for this blog: a capital letter N.",

View File

@ -2,6 +2,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title or metadata.title }}</title> <title>{{ title or metadata.title }}</title>
<link rel="icon" type="image/x-icon" href="/img/logo_favicon.svg"> <link rel="icon" type="image/x-icon" href="/img/logo_favicon.svg">
<link rel="blogroll" type="text/xml" href="{{ metadata.blogrollUrl }}">
<meta name="description" content="{{ description or metadata.description }}"> <meta name="description" content="{{ description or metadata.description }}">
<meta name="robots" content="noai, noimageai"> <meta name="robots" content="noai, noimageai">
<meta name="generator" content="{{ eleventy.generator }}"> <meta name="generator" content="{{ eleventy.generator }}">