fix: additional errors and notes
This commit is contained in:
parent
b0aa0d6948
commit
84768cc888
6 changed files with 6 additions and 5 deletions
|
@ -3,6 +3,7 @@ const { AssetCache } = require('@11ty/eleventy-fetch')
|
||||||
|
|
||||||
module.exports = async function () {
|
module.exports = async function () {
|
||||||
const url = 'https://oku.club/rss/collection/POaRa'
|
const url = 'https://oku.club/rss/collection/POaRa'
|
||||||
|
// noinspection JSCheckFunctionSignatures
|
||||||
const asset = new AssetCache('books_data')
|
const asset = new AssetCache('books_data')
|
||||||
if (asset.isCacheValid('1h')) return await asset.getCachedValue()
|
if (asset.isCacheValid('1h')) return await asset.getCachedValue()
|
||||||
const res = await extract(url)
|
const res = await extract(url)
|
||||||
|
|
|
@ -3,6 +3,7 @@ const { AssetCache } = require('@11ty/eleventy-fetch')
|
||||||
|
|
||||||
module.exports = async function () {
|
module.exports = async function () {
|
||||||
const url = 'https://letterboxd.com/cdme/rss'
|
const url = 'https://letterboxd.com/cdme/rss'
|
||||||
|
// noinspection JSCheckFunctionSignatures
|
||||||
const asset = new AssetCache('movies_data')
|
const asset = new AssetCache('movies_data')
|
||||||
if (asset.isCacheValid('1h')) return await asset.getCachedValue()
|
if (asset.isCacheValid('1h')) return await asset.getCachedValue()
|
||||||
const res = await extract(url, {
|
const res = await extract(url, {
|
||||||
|
|
|
@ -4,6 +4,7 @@ const { AssetCache } = require('@11ty/eleventy-fetch')
|
||||||
module.exports = async function () {
|
module.exports = async function () {
|
||||||
const TV_KEY = process.env.API_KEY_TRAKT
|
const TV_KEY = process.env.API_KEY_TRAKT
|
||||||
const url = `https://trakt.tv/users/cdransf/history.atom?slurm=${TV_KEY}`
|
const url = `https://trakt.tv/users/cdransf/history.atom?slurm=${TV_KEY}`
|
||||||
|
// noinspection JSCheckFunctionSignatures
|
||||||
const asset = new AssetCache('tv_data')
|
const asset = new AssetCache('tv_data')
|
||||||
if (asset.isCacheValid('1h')) return await asset.getCachedValue()
|
if (asset.isCacheValid('1h')) return await asset.getCachedValue()
|
||||||
const res = await extract(url).catch((error) => {
|
const res = await extract(url).catch((error) => {
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
---
|
---
|
||||||
layout: main
|
layout: main
|
||||||
---
|
---
|
||||||
|
|
||||||
{% include "header.liquid" %}
|
{% include "header.liquid" %}
|
||||||
<!--suppress ALL -->
|
|
||||||
|
|
||||||
|
|
||||||
<div class="pt-12 prose dark:prose-invert hover:prose-a:text-blue-500 max-w-full">
|
<div class="pt-12 prose dark:prose-invert hover:prose-a:text-blue-500 max-w-full">
|
||||||
<h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mb-4">
|
<h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mb-4">
|
||||||
Currently
|
Currently
|
||||||
|
|
|
@ -18,4 +18,4 @@ permalink: '/feed.json'
|
||||||
}{% if not forloop.last %},{% endif %}
|
}{% if not forloop.last %},{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,11 +2,13 @@
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
||||||
|
/*noinspection Annotator*/
|
||||||
::-moz-selection {
|
::-moz-selection {
|
||||||
color: theme(colors.white);
|
color: theme(colors.white);
|
||||||
background: theme(colors.purple.400);
|
background: theme(colors.purple.400);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*noinspection Annotator*/
|
||||||
::selection {
|
::selection {
|
||||||
color: theme(colors.white);
|
color: theme(colors.white);
|
||||||
background: theme(colors.purple.400);
|
background: theme(colors.purple.400);
|
||||||
|
|
Reference in a new issue