# This is a combination of 3 commits.
# This is the 1st commit message: fix: redirects + update root cdn url # This is the commit message #2: chore: workflow # This is the commit message #3: chore: naming
This commit is contained in:
parent
ed88631875
commit
88a4ec4acd
45 changed files with 1122 additions and 133 deletions
|
@ -62,7 +62,7 @@
|
|||
{%- when 'movie' -%}
|
||||
{%- assign ogImage = movie.backdrop -%}
|
||||
{%- when 'show' -%}
|
||||
{%- assign ogImage = 'https://coryd-dev.b-cdn.net/shows/backdrops/backdrop-' | append: show.tmdb_id | append: '.jpg' -%}
|
||||
{%- assign ogImage = 'https://cdn.coryd.dev/shows/backdrops/backdrop-' | append: show.tmdb_id | append: '.jpg' -%}
|
||||
{%- when 'genre' -%}
|
||||
{%- assign genreArtist = genre.artists | shuffleArray | first -%}
|
||||
{%- assign ogImage = genreArtist.image -%}
|
||||
|
@ -86,9 +86,9 @@
|
|||
<meta name="theme-color" content="{{ meta.themeColor }}" />
|
||||
<meta name="generator" content="Eleventy">
|
||||
<meta name="robots" content="noai, noimageai">
|
||||
<link href="https://coryd-dev.b-cdn.net/assets/icons/favicon.ico?v={% appVersion %}" rel="icon" sizes="any">
|
||||
<link href="https://coryd-dev.b-cdn.net/assets/icons/favicon.svg?v={% appVersion %}" rel="icon" type="image/svg+xml">
|
||||
<link href="https://coryd-dev.b-cdn.net/assets/icons/apple-touch-icon.png?v={% appVersion %}" rel="apple-touch-icon">
|
||||
<link href="https://cdn.coryd.dev/assets/icons/favicon.ico?v={% appVersion %}" rel="icon" sizes="any">
|
||||
<link href="https://cdn.coryd.dev/assets/icons/favicon.svg?v={% appVersion %}" rel="icon" type="image/svg+xml">
|
||||
<link href="https://cdn.coryd.dev/assets/icons/apple-touch-icon.png?v={% appVersion %}" rel="apple-touch-icon">
|
||||
<link rel="webmention" href="https://webmention.io/coryd.dev/webmention" />
|
||||
<link rel="pingback" href="https://webmention.io/coryd.dev/xmlrpc" />
|
||||
<link type="application/atom+xml" rel="alternate" title="{{ meta.siteName }}" href="https://feedpress.me/coryd">
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
{
|
||||
"version": "https://jsonfeed.org/version/1",
|
||||
"title": "{{ title }}",
|
||||
"icon": "https://coryd-dev.b-cdn.net/assets/avatar.png",
|
||||
"icon": "https://cdn.coryd.dev/assets/avatar.png",
|
||||
"home_page_url": "{{ meta.url }}",
|
||||
"feed_url": "{{ permalink | absoluteUrl: meta.url }}",
|
||||
"items": [{% for entry in entries limit: 20 -%}
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<image>
|
||||
<title>{{ title }}</title>
|
||||
<link>{{ permalink | absoluteUrl: meta.url }}</link>
|
||||
<url>https://coryd-dev.b-cdn.net/assets/avatar.png</url>
|
||||
<url>https://cdn.coryd.dev/assets/avatar.png</url>
|
||||
<width>144</width>
|
||||
<height>144</height>
|
||||
</image>
|
||||
|
|
|
@ -19,16 +19,16 @@
|
|||
{% if shape == 'square' %}
|
||||
<img
|
||||
srcset="
|
||||
https://coryd-dev.b-cdn.net{{ item.image }}?width=200&h=200&aspect_ratio=1:1 200w,
|
||||
https://coryd-dev.b-cdn.net{{ item.image }}?width=400&h=400&aspect_ratio=1:1 400w,
|
||||
https://coryd-dev.b-cdn.net{{ item.image }}?width=800&h=800&aspect_ratio=1:1 800w,
|
||||
https://coryd-dev.b-cdn.net{{ item.image }}?width=1200&h=1200&aspect_ratio=1:1 1200w
|
||||
https://cdn.coryd.dev{{ item.image }}?width=200&h=200&aspect_ratio=1:1 200w,
|
||||
https://cdn.coryd.dev{{ item.image }}?width=400&h=400&aspect_ratio=1:1 400w,
|
||||
https://cdn.coryd.dev{{ item.image }}?width=800&h=800&aspect_ratio=1:1 800w,
|
||||
https://cdn.coryd.dev{{ item.image }}?width=1200&h=1200&aspect_ratio=1:1 1200w
|
||||
"
|
||||
sizes="(max-width: 450px) 200px,
|
||||
(max-width: 850px) 400px,
|
||||
(max-width: 100px) 800px,
|
||||
1200px"
|
||||
src="https://coryd-dev.b-cdn.net{{ item.image }}?width=1200&h=1200&aspect_ratio=1:1"
|
||||
src="https://cdn.coryd.dev{{ item.image }}?width=1200&h=1200&aspect_ratio=1:1"
|
||||
alt="{{ alt }}"
|
||||
loading="{{ loadingStrategy }}"
|
||||
decoding="async"
|
||||
|
@ -38,16 +38,16 @@
|
|||
{% else %}
|
||||
<img
|
||||
srcset="
|
||||
https://coryd-dev.b-cdn.net{{ item.image }}?w=200&aspect_ratio=2:3 200w,
|
||||
https://coryd-dev.b-cdn.net{{ item.image }}?w=400&aspect_ratio=2:3 400w,
|
||||
https://coryd-dev.b-cdn.net{{ item.image }}?w=800&aspect_ratio=2:3 800w,
|
||||
https://coryd-dev.b-cdn.net{{ item.image }}?w=1200&aspect_ratio=2:3 1200w
|
||||
https://cdn.coryd.dev{{ item.image }}?w=200&aspect_ratio=2:3 200w,
|
||||
https://cdn.coryd.dev{{ item.image }}?w=400&aspect_ratio=2:3 400w,
|
||||
https://cdn.coryd.dev{{ item.image }}?w=800&aspect_ratio=2:3 800w,
|
||||
https://cdn.coryd.dev{{ item.image }}?w=1200&aspect_ratio=2:3 1200w
|
||||
"
|
||||
sizes="(max-width: 450px) 200px,
|
||||
(max-width: 850px) 400px,
|
||||
(max-width: 1000px) 800px,
|
||||
1200px"
|
||||
src="https://coryd-dev.b-cdn.net{{ item.image }}?w=1200&aspect_ratio=2:3"
|
||||
src="https://cdn.coryd.dev{{ item.image }}?w=1200&aspect_ratio=2:3"
|
||||
alt="{{ alt }}"
|
||||
loading="{{ loadingStrategy }}"
|
||||
decoding="async"
|
||||
|
|
|
@ -5,16 +5,16 @@
|
|||
<div class="meta">
|
||||
<img
|
||||
srcset="
|
||||
https://coryd-dev.b-cdn.net{{ item.image }}?aspect_ratio=1:1&width=64 256w 64w,
|
||||
https://coryd-dev.b-cdn.net{{ item.image }}?aspect_ratio=1:1&width=128 128w,
|
||||
https://coryd-dev.b-cdn.net{{ item.image }}?aspect_ratio=1:1&width=256 256w,
|
||||
https://coryd-dev.b-cdn.net{{ item.image }}?aspect_ratio=1:1&width=512 512w
|
||||
https://cdn.coryd.dev{{ item.image }}?aspect_ratio=1:1&width=64 256w 64w,
|
||||
https://cdn.coryd.dev{{ item.image }}?aspect_ratio=1:1&width=128 128w,
|
||||
https://cdn.coryd.dev{{ item.image }}?aspect_ratio=1:1&width=256 256w,
|
||||
https://cdn.coryd.dev{{ item.image }}?aspect_ratio=1:1&width=512 512w
|
||||
"
|
||||
sizes="(max-width: 450px) 64px,
|
||||
(max-width: 850px) 128px,
|
||||
(max-width: 1000px) 256px,
|
||||
512px"
|
||||
src="https://coryd-dev.b-cdn.net{{ item.image }}?aspect_ratio=1:1&width=512"
|
||||
src="https://cdn.coryd.dev{{ item.image }}?aspect_ratio=1:1&width=512"
|
||||
alt="{{ alt }}"
|
||||
loading="lazy"
|
||||
decoding="async"
|
||||
|
|
|
@ -23,16 +23,16 @@
|
|||
{%- endcapture -%}
|
||||
<img
|
||||
srcset="
|
||||
https://coryd-dev.b-cdn.net{{ item.backdrop }}?aspect_ratio=1:.5625&width=256 256w,
|
||||
https://coryd-dev.b-cdn.net{{ item.backdrop }}?aspect_ratio=1:.5625&width=512 512w,
|
||||
https://coryd-dev.b-cdn.net{{ item.backdrop }}?aspect_ratio=1:.5625&width=1024 1024w,
|
||||
https://coryd-dev.b-cdn.net{{ item.backdrop }}?aspect_ratio=1:.5625&width=2048 2048w
|
||||
https://cdn.coryd.dev{{ item.backdrop }}?aspect_ratio=1:.5625&width=256 256w,
|
||||
https://cdn.coryd.dev{{ item.backdrop }}?aspect_ratio=1:.5625&width=512 512w,
|
||||
https://cdn.coryd.dev{{ item.backdrop }}?aspect_ratio=1:.5625&width=1024 1024w,
|
||||
https://cdn.coryd.dev{{ item.backdrop }}?aspect_ratio=1:.5625&width=2048 2048w
|
||||
"
|
||||
sizes="(max-width: 450px) 256px,
|
||||
(max-width: 850px) 512px,
|
||||
(max-width: 1000px) 1024px,
|
||||
2048px"
|
||||
src="https://coryd-dev.b-cdn.net{{ item.backdrop }}?aspect_ratio=1:.5625&width=2048"
|
||||
src="https://cdn.coryd.dev{{ item.backdrop }}?aspect_ratio=1:.5625&width=2048"
|
||||
alt="{{ alt }}"
|
||||
loading="{{ loadingStrategy }}"
|
||||
decoding="async"
|
||||
|
|
|
@ -7,16 +7,16 @@
|
|||
</div>
|
||||
<img
|
||||
srcset="
|
||||
https://coryd-dev.b-cdn.net{{ movie.backdrop }}?aspect_ratio=1:.5625&width=256 256w,
|
||||
https://coryd-dev.b-cdn.net{{ movie.backdrop }}?aspect_ratio=1:.5625&width=512 512w,
|
||||
https://coryd-dev.b-cdn.net{{ movie.backdrop }}?aspect_ratio=1:.5625&width=1024 1024w,
|
||||
https://coryd-dev.b-cdn.net{{ movie.backdrop }}?aspect_ratio=1:.5625&width=2048 2048w
|
||||
https://cdn.coryd.dev{{ movie.backdrop }}?aspect_ratio=1:.5625&width=256 256w,
|
||||
https://cdn.coryd.dev{{ movie.backdrop }}?aspect_ratio=1:.5625&width=512 512w,
|
||||
https://cdn.coryd.dev{{ movie.backdrop }}?aspect_ratio=1:.5625&width=1024 1024w,
|
||||
https://cdn.coryd.dev{{ movie.backdrop }}?aspect_ratio=1:.5625&width=2048 2048w
|
||||
"
|
||||
sizes="(max-width: 450px) 256px,
|
||||
(max-width: 850px) 512px,
|
||||
(max-width: 1000px) 1024px,
|
||||
2048px"
|
||||
src="https://coryd-dev.b-cdn.net{{ movie.backdrop }}?aspect_ratio=1:.5625&width=2048"
|
||||
src="https://cdn.coryd.dev{{ movie.backdrop }}?aspect_ratio=1:.5625&width=2048"
|
||||
alt="{{ alt }}"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
|
|
|
@ -2,16 +2,16 @@
|
|||
<a href="https://11ty.dev">
|
||||
<img
|
||||
srcset="
|
||||
https://coryd-dev.b-cdn.net/assets/badges/eleventy.png?aspect_ratio=1:.35&width=88 88w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/eleventy.png?aspect_ratio=1:.35&width=176 176w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/eleventy.png?aspect_ratio=1:.35&width=352 352w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/eleventy.png?aspect_ratio=1:.35&width=704 704w
|
||||
https://cdn.coryd.dev/assets/badges/eleventy.png?aspect_ratio=1:.35&width=88 88w,
|
||||
https://cdn.coryd.dev/assets/badges/eleventy.png?aspect_ratio=1:.35&width=176 176w,
|
||||
https://cdn.coryd.dev/assets/badges/eleventy.png?aspect_ratio=1:.35&width=352 352w,
|
||||
https://cdn.coryd.dev/assets/badges/eleventy.png?aspect_ratio=1:.35&width=704 704w
|
||||
"
|
||||
sizes="(max-width: 450px) 88px,
|
||||
(max-width: 850px) 176px,
|
||||
(max-width: 1000px) 352px,
|
||||
704px"
|
||||
src="https://coryd-dev.b-cdn.net/assets/badges/eleventy.png?aspect_ratio=1:.35&width=704"
|
||||
src="https://cdn.coryd.dev/assets/badges/eleventy.png?aspect_ratio=1:.35&width=704"
|
||||
alt="Made with 11ty"
|
||||
loading="lazy"
|
||||
decoding="async"
|
||||
|
@ -22,16 +22,16 @@
|
|||
<a href="https://social.lol/@cory">
|
||||
<img
|
||||
srcset="
|
||||
https://coryd-dev.b-cdn.net/assets/badges/mastodon.png?aspect_ratio=1:.35&width=88 88w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/mastodon.png?aspect_ratio=1:.35&width=176 176w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/mastodon.png?aspect_ratio=1:.35&width=352 352w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/mastodon.png?aspect_ratio=1:.35&width=704 704w
|
||||
https://cdn.coryd.dev/assets/badges/mastodon.png?aspect_ratio=1:.35&width=88 88w,
|
||||
https://cdn.coryd.dev/assets/badges/mastodon.png?aspect_ratio=1:.35&width=176 176w,
|
||||
https://cdn.coryd.dev/assets/badges/mastodon.png?aspect_ratio=1:.35&width=352 352w,
|
||||
https://cdn.coryd.dev/assets/badges/mastodon.png?aspect_ratio=1:.35&width=704 704w
|
||||
"
|
||||
sizes="(max-width: 450px) 88px,
|
||||
(max-width: 850px) 176px,
|
||||
(max-width: 1000px) 352px,
|
||||
704px"
|
||||
src="https://coryd-dev.b-cdn.net/assets/badges/mastodon.png?aspect_ratio=1:.35&width=704"
|
||||
src="https://cdn.coryd.dev/assets/badges/mastodon.png?aspect_ratio=1:.35&width=704"
|
||||
alt="Made with 11ty"
|
||||
loading="lazy"
|
||||
decoding="async"
|
||||
|
@ -42,16 +42,16 @@
|
|||
<a href="https://www.buymeacoffee.com/cory">
|
||||
<img
|
||||
srcset="
|
||||
https://coryd-dev.b-cdn.net/assets/badges/buymeacoffee.png?aspect_ratio=1:.35&width=88 88w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/buymeacoffee.png?aspect_ratio=1:.35&width=176 176w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/buymeacoffee.png?aspect_ratio=1:.35&width=352 352w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/buymeacoffee.png?aspect_ratio=1:.35&width=704 704w
|
||||
https://cdn.coryd.dev/assets/badges/buymeacoffee.png?aspect_ratio=1:.35&width=88 88w,
|
||||
https://cdn.coryd.dev/assets/badges/buymeacoffee.png?aspect_ratio=1:.35&width=176 176w,
|
||||
https://cdn.coryd.dev/assets/badges/buymeacoffee.png?aspect_ratio=1:.35&width=352 352w,
|
||||
https://cdn.coryd.dev/assets/badges/buymeacoffee.png?aspect_ratio=1:.35&width=704 704w
|
||||
"
|
||||
sizes="(max-width: 450px) 88px,
|
||||
(max-width: 850px) 176px,
|
||||
(max-width: 1000px) 352px,
|
||||
704px"
|
||||
src="https://coryd-dev.b-cdn.net/assets/badges/buymeacoffee.png?aspect_ratio=1:.35&width=704"
|
||||
src="https://cdn.coryd.dev/assets/badges/buymeacoffee.png?aspect_ratio=1:.35&width=704"
|
||||
alt="Made with 11ty"
|
||||
loading="lazy"
|
||||
decoding="async"
|
||||
|
@ -62,16 +62,16 @@
|
|||
<a href="https://github.com/cdransf">
|
||||
<img
|
||||
srcset="
|
||||
https://coryd-dev.b-cdn.net/assets/badges/github.png?aspect_ratio=1:.35&width=88 88w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/github.png?aspect_ratio=1:.35&width=176 176w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/github.png?aspect_ratio=1:.35&width=352 352w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/github.png?aspect_ratio=1:.35&width=704 704w
|
||||
https://cdn.coryd.dev/assets/badges/github.png?aspect_ratio=1:.35&width=88 88w,
|
||||
https://cdn.coryd.dev/assets/badges/github.png?aspect_ratio=1:.35&width=176 176w,
|
||||
https://cdn.coryd.dev/assets/badges/github.png?aspect_ratio=1:.35&width=352 352w,
|
||||
https://cdn.coryd.dev/assets/badges/github.png?aspect_ratio=1:.35&width=704 704w
|
||||
"
|
||||
sizes="(max-width: 450px) 88px,
|
||||
(max-width: 850px) 176px,
|
||||
(max-width: 1000px) 352px,
|
||||
704px"
|
||||
src="https://coryd-dev.b-cdn.net/assets/badges/github.png?aspect_ratio=1:.35&width=704"
|
||||
src="https://cdn.coryd.dev/assets/badges/github.png?aspect_ratio=1:.35&width=704"
|
||||
alt="Made with 11ty"
|
||||
loading="lazy"
|
||||
decoding="async"
|
||||
|
@ -82,16 +82,16 @@
|
|||
<a href="https://github.com/ai-robots-txt/ai.robots.txt">
|
||||
<img
|
||||
srcset="
|
||||
https://coryd-dev.b-cdn.net/assets/badges/notarobot.png?aspect_ratio=1:.35&width=88 88w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/notarobot.png?aspect_ratio=1:.35&width=176 176w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/notarobot.png?aspect_ratio=1:.35&width=352 352w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/notarobot.png?aspect_ratio=1:.35&width=704 704w
|
||||
https://cdn.coryd.dev/assets/badges/notarobot.png?aspect_ratio=1:.35&width=88 88w,
|
||||
https://cdn.coryd.dev/assets/badges/notarobot.png?aspect_ratio=1:.35&width=176 176w,
|
||||
https://cdn.coryd.dev/assets/badges/notarobot.png?aspect_ratio=1:.35&width=352 352w,
|
||||
https://cdn.coryd.dev/assets/badges/notarobot.png?aspect_ratio=1:.35&width=704 704w
|
||||
"
|
||||
sizes="(max-width: 450px) 88px,
|
||||
(max-width: 850px) 176px,
|
||||
(max-width: 1000px) 352px,
|
||||
704px"
|
||||
src="https://coryd-dev.b-cdn.net/assets/badges/notarobot.png?aspect_ratio=1:.35&width=704"
|
||||
src="https://cdn.coryd.dev/assets/badges/notarobot.png?aspect_ratio=1:.35&width=704"
|
||||
alt="Made with 11ty"
|
||||
loading="lazy"
|
||||
decoding="async"
|
||||
|
@ -102,16 +102,16 @@
|
|||
<a href="https://validator.w3.org">
|
||||
<img
|
||||
srcset="
|
||||
https://coryd-dev.b-cdn.net/assets/badges/validhtml5.png?aspect_ratio=1:.35&width=88 88w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/validhtml5.png?aspect_ratio=1:.35&width=176 176w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/validhtml5.png?aspect_ratio=1:.35&width=352 352w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/validhtml5.png?aspect_ratio=1:.35&width=704 704w
|
||||
https://cdn.coryd.dev/assets/badges/validhtml5.png?aspect_ratio=1:.35&width=88 88w,
|
||||
https://cdn.coryd.dev/assets/badges/validhtml5.png?aspect_ratio=1:.35&width=176 176w,
|
||||
https://cdn.coryd.dev/assets/badges/validhtml5.png?aspect_ratio=1:.35&width=352 352w,
|
||||
https://cdn.coryd.dev/assets/badges/validhtml5.png?aspect_ratio=1:.35&width=704 704w
|
||||
"
|
||||
sizes="(max-width: 450px) 88px,
|
||||
(max-width: 850px) 176px,
|
||||
(max-width: 1000px) 352px,
|
||||
704px"
|
||||
src="https://coryd-dev.b-cdn.net/assets/badges/validhtml5.png?aspect_ratio=1:.35&width=704"
|
||||
src="https://cdn.coryd.dev/assets/badges/validhtml5.png?aspect_ratio=1:.35&width=704"
|
||||
alt="Made with 11ty"
|
||||
loading="lazy"
|
||||
decoding="async"
|
||||
|
@ -122,16 +122,16 @@
|
|||
<a href="https://www.w3.org/Style/CSS/Overview.en.html">
|
||||
<img
|
||||
srcset="
|
||||
https://coryd-dev.b-cdn.net/assets/badges/validcss.png?aspect_ratio=1:.35&width=88 88w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/validcss.png?aspect_ratio=1:.35&width=176 176w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/validcss.png?aspect_ratio=1:.35&width=352 352w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/validcss.png?aspect_ratio=1:.35&width=704 704w
|
||||
https://cdn.coryd.dev/assets/badges/validcss.png?aspect_ratio=1:.35&width=88 88w,
|
||||
https://cdn.coryd.dev/assets/badges/validcss.png?aspect_ratio=1:.35&width=176 176w,
|
||||
https://cdn.coryd.dev/assets/badges/validcss.png?aspect_ratio=1:.35&width=352 352w,
|
||||
https://cdn.coryd.dev/assets/badges/validcss.png?aspect_ratio=1:.35&width=704 704w
|
||||
"
|
||||
sizes="(max-width: 450px) 88px,
|
||||
(max-width: 850px) 176px,
|
||||
(max-width: 1000px) 352px,
|
||||
704px"
|
||||
src="https://coryd-dev.b-cdn.net/assets/badges/validcss.png?aspect_ratio=1:.35&width=704"
|
||||
src="https://cdn.coryd.dev/assets/badges/validcss.png?aspect_ratio=1:.35&width=704"
|
||||
alt="Made with 11ty"
|
||||
loading="lazy"
|
||||
decoding="async"
|
||||
|
@ -142,16 +142,16 @@
|
|||
<a href="https://coryd.dev/feeds">
|
||||
<img
|
||||
srcset="
|
||||
https://coryd-dev.b-cdn.net/assets/badges/validrss.png?aspect_ratio=1:.35&width=88 88w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/validrss.png?aspect_ratio=1:.35&width=176 176w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/validrss.png?aspect_ratio=1:.35&width=352 352w,
|
||||
https://coryd-dev.b-cdn.net/assets/badges/validrss.png?aspect_ratio=1:.35&width=704 704w
|
||||
https://cdn.coryd.dev/assets/badges/validrss.png?aspect_ratio=1:.35&width=88 88w,
|
||||
https://cdn.coryd.dev/assets/badges/validrss.png?aspect_ratio=1:.35&width=176 176w,
|
||||
https://cdn.coryd.dev/assets/badges/validrss.png?aspect_ratio=1:.35&width=352 352w,
|
||||
https://cdn.coryd.dev/assets/badges/validrss.png?aspect_ratio=1:.35&width=704 704w
|
||||
"
|
||||
sizes="(max-width: 450px) 88px,
|
||||
(max-width: 850px) 176px,
|
||||
(max-width: 1000px) 352px,
|
||||
704px"
|
||||
src="https://coryd-dev.b-cdn.net/assets/badges/validrss.png?aspect_ratio=1:.35&width=704"
|
||||
src="https://cdn.coryd.dev/assets/badges/validrss.png?aspect_ratio=1:.35&width=704"
|
||||
alt="Made with 11ty"
|
||||
loading="lazy"
|
||||
decoding="async"
|
||||
|
|
|
@ -2,16 +2,16 @@
|
|||
<div class="webring__centered flex-centered">
|
||||
<img
|
||||
srcset="
|
||||
https://coryd-dev.b-cdn.net/assets/webrings/theclaw.png?aspect_ratio=.845:1&width=200 200w,
|
||||
https://coryd-dev.b-cdn.net/assets/webrings/theclaw.png?aspect_ratio=.845:1&width=400 400w,
|
||||
https://coryd-dev.b-cdn.net/assets/webrings/theclaw.png?aspect_ratio=.845:1&width=800 800w,
|
||||
https://coryd-dev.b-cdn.net/assets/webrings/theclaw.png?aspect_ratio=.845:1&width=1600 1600w
|
||||
https://cdn.coryd.dev/assets/webrings/theclaw.png?aspect_ratio=.845:1&width=200 200w,
|
||||
https://cdn.coryd.dev/assets/webrings/theclaw.png?aspect_ratio=.845:1&width=400 400w,
|
||||
https://cdn.coryd.dev/assets/webrings/theclaw.png?aspect_ratio=.845:1&width=800 800w,
|
||||
https://cdn.coryd.dev/assets/webrings/theclaw.png?aspect_ratio=.845:1&width=1600 1600w
|
||||
"
|
||||
sizes="(max-width: 450px) 200px,
|
||||
(max-width: 850px) 400px,
|
||||
(max-width: 1000px) 800px,
|
||||
1600px"
|
||||
src="https://coryd-dev.b-cdn.net/assets/webrings/theclaw.png?aspect_ratio=.845:1&width=1600"
|
||||
src="https://cdn.coryd.dev/assets/webrings/theclaw.png?aspect_ratio=.845:1&width=1600"
|
||||
alt="The Claw Webring"
|
||||
loading="lazy"
|
||||
decoding="async"
|
||||
|
|
Reference in a new issue