Build: (5f45470
) Wrap CSS reset in a cascade layer
This commit is contained in:
parent
412af16c93
commit
d5a5f2672b
|
@ -396,7 +396,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||||
|
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
<time datetime="Sun Nov 03 2024 17:33:51 GMT+0000 (Coordinated Universal Time)">3 November 2024</time>
|
<time datetime="Mon Nov 04 2024 05:39:56 GMT+0000 (Coordinated Universal Time)">4 November 2024</time>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
@ -406,7 +406,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||||
|
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
<time datetime="Sun Nov 03 2024 17:33:51 GMT+0000 (Coordinated Universal Time)">3 November 2024</time>
|
<time datetime="Mon Nov 04 2024 05:39:56 GMT+0000 (Coordinated Universal Time)">4 November 2024</time>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
@ -416,7 +416,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||||
|
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
<time datetime="Sun Nov 03 2024 17:33:51 GMT+0000 (Coordinated Universal Time)">3 November 2024</time>
|
<time datetime="Mon Nov 04 2024 05:39:56 GMT+0000 (Coordinated Universal Time)">4 November 2024</time>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|
|
@ -54,54 +54,56 @@
|
||||||
/* CSS Reset */
|
/* CSS Reset */
|
||||||
/* ------------------- */
|
/* ------------------- */
|
||||||
|
|
||||||
/* Box sizing rules */
|
@layer reset {
|
||||||
*,
|
/* Box sizing rules */
|
||||||
*::before,
|
*,
|
||||||
*::after { box-sizing: border-box; }
|
*::before,
|
||||||
|
*::after { box-sizing: border-box; }
|
||||||
|
|
||||||
/* Prevent font size inflation */
|
/* Prevent font size inflation */
|
||||||
html {
|
html {
|
||||||
-moz-text-size-adjust: none;
|
-moz-text-size-adjust: none;
|
||||||
-webkit-text-size-adjust: none;
|
-webkit-text-size-adjust: none;
|
||||||
text-size-adjust: none;
|
text-size-adjust: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Remove default margin in favour of better control in authored CSS */
|
||||||
|
body, h1, h2, h3, h4, p,
|
||||||
|
figure, blockquote, dl, dd { margin: 0; }
|
||||||
|
|
||||||
|
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
|
||||||
|
ul[role='list'],
|
||||||
|
ol[role='list'] { list-style-type: ""; }
|
||||||
|
|
||||||
|
/* Set core body defaults */
|
||||||
|
body {
|
||||||
|
min-height: 100vh;
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Set shorter line heights on headings and interactive elements */
|
||||||
|
h1, h2, h3, h4,
|
||||||
|
button, input, label { line-height: 1.1; }
|
||||||
|
|
||||||
|
/* Balance text wrapping on headings */
|
||||||
|
h1, h2, h3, h4 { text-wrap: balance; }
|
||||||
|
|
||||||
|
/* A elements that don't have a class get default styles */
|
||||||
|
a:not([class]) { text-decoration-skip-ink: auto; }
|
||||||
|
|
||||||
|
/* Make images easier to work with */
|
||||||
|
img,
|
||||||
|
picture {
|
||||||
|
max-width: 100%;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Inherit fonts for inputs and buttons */
|
||||||
|
input, button, textarea, select { font: inherit; }
|
||||||
|
|
||||||
|
/* Make sure textareas without a rows attribute are not tiny */
|
||||||
|
textarea:not([rows]) { min-height: 10em; }
|
||||||
|
|
||||||
|
/* Anything that has been anchored to should have extra scroll margin */
|
||||||
|
:target { scroll-margin-block: 5ex; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Remove default margin in favour of better control in authored CSS */
|
|
||||||
body, h1, h2, h3, h4, p,
|
|
||||||
figure, blockquote, dl, dd { margin: 0; }
|
|
||||||
|
|
||||||
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
|
|
||||||
ul[role='list'],
|
|
||||||
ol[role='list'] { list-style-type: ""; }
|
|
||||||
|
|
||||||
/* Set core body defaults */
|
|
||||||
body {
|
|
||||||
min-height: 100vh;
|
|
||||||
line-height: 1.5;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Set shorter line heights on headings and interactive elements */
|
|
||||||
h1, h2, h3, h4,
|
|
||||||
button, input, label { line-height: 1.1; }
|
|
||||||
|
|
||||||
/* Balance text wrapping on headings */
|
|
||||||
h1, h2, h3, h4 { text-wrap: balance; }
|
|
||||||
|
|
||||||
/* A elements that don't have a class get default styles */
|
|
||||||
a:not([class]) { text-decoration-skip-ink: auto; }
|
|
||||||
|
|
||||||
/* Make images easier to work with */
|
|
||||||
img,
|
|
||||||
picture {
|
|
||||||
max-width: 100%;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Inherit fonts for inputs and buttons */
|
|
||||||
input, button, textarea, select { font: inherit; }
|
|
||||||
|
|
||||||
/* Make sure textareas without a rows attribute are not tiny */
|
|
||||||
textarea:not([rows]) { min-height: 10em; }
|
|
||||||
|
|
||||||
/* Anything that has been anchored to should have extra scroll margin */
|
|
||||||
:target { scroll-margin-block: 5ex; }
|
|
|
@ -399,7 +399,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||||
|
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
<time datetime="Sun Nov 03 2024 17:33:51 GMT+0000 (Coordinated Universal Time)">3 November 2024</time>
|
<time datetime="Mon Nov 04 2024 05:39:56 GMT+0000 (Coordinated Universal Time)">4 November 2024</time>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
@ -409,7 +409,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||||
|
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
<time datetime="Sun Nov 03 2024 17:33:51 GMT+0000 (Coordinated Universal Time)">3 November 2024</time>
|
<time datetime="Mon Nov 04 2024 05:39:56 GMT+0000 (Coordinated Universal Time)">4 November 2024</time>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
@ -419,7 +419,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||||
|
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
<time datetime="Sun Nov 03 2024 17:33:51 GMT+0000 (Coordinated Universal Time)">3 November 2024</time>
|
<time datetime="Mon Nov 04 2024 05:39:56 GMT+0000 (Coordinated Universal Time)">4 November 2024</time>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|
|
@ -399,7 +399,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||||
|
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
<time datetime="Sun Nov 03 2024 17:33:51 GMT+0000 (Coordinated Universal Time)">3 November 2024</time>
|
<time datetime="Mon Nov 04 2024 05:39:56 GMT+0000 (Coordinated Universal Time)">4 November 2024</time>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|
|
@ -399,7 +399,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||||
|
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
<time datetime="Sun Nov 03 2024 17:33:51 GMT+0000 (Coordinated Universal Time)">3 November 2024</time>
|
<time datetime="Mon Nov 04 2024 05:39:56 GMT+0000 (Coordinated Universal Time)">4 November 2024</time>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
@ -409,7 +409,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||||
|
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
<time datetime="Sun Nov 03 2024 17:33:51 GMT+0000 (Coordinated Universal Time)">3 November 2024</time>
|
<time datetime="Mon Nov 04 2024 05:39:56 GMT+0000 (Coordinated Universal Time)">4 November 2024</time>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
|
|
2
feed.xml
2
feed.xml
|
@ -4,7 +4,7 @@
|
||||||
<subtitle>Leilukin's personal website.</subtitle>
|
<subtitle>Leilukin's personal website.</subtitle>
|
||||||
<link href="https://leilukin.com/feed.xml" rel="self"/>
|
<link href="https://leilukin.com/feed.xml" rel="self"/>
|
||||||
<link href="https://leilukin.com"/>
|
<link href="https://leilukin.com"/>
|
||||||
<updated>2024-11-03T17:33:55Z</updated>
|
<updated>2024-11-04T05:40:02Z</updated>
|
||||||
<id>https://leilukin.com/</id>
|
<id>https://leilukin.com/</id>
|
||||||
<author>
|
<author>
|
||||||
<name>Leilukin</name>
|
<name>Leilukin</name>
|
||||||
|
|
76
sitemap.xml
76
sitemap.xml
|
@ -1118,229 +1118,229 @@
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/blog/posts/</loc>
|
<loc>https://leilukin.com/blog/posts/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.048Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.691Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/changelogs/2022/</loc>
|
<loc>https://leilukin.com/changelogs/2022/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.695Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/changelogs/2023/</loc>
|
<loc>https://leilukin.com/changelogs/2023/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.695Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/changelogs/2024/</loc>
|
<loc>https://leilukin.com/changelogs/2024/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.695Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/changelogs/layouts/</loc>
|
<loc>https://leilukin.com/changelogs/layouts/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.695Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/</loc>
|
<loc>https://leilukin.com/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.695Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/projects/code/bellabuffs-phpmailer/</loc>
|
<loc>https://leilukin.com/projects/code/bellabuffs-phpmailer/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/projects/playlists/</loc>
|
<loc>https://leilukin.com/projects/playlists/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/projects/snippets/disability-pride-flag-background/</loc>
|
<loc>https://leilukin.com/projects/snippets/disability-pride-flag-background/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/shrines/asummersend/gallery/</loc>
|
<loc>https://leilukin.com/shrines/asummersend/gallery/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/shrines/asummersend/playlists/</loc>
|
<loc>https://leilukin.com/shrines/asummersend/playlists/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/shrines/asummersend/trivia/</loc>
|
<loc>https://leilukin.com/shrines/asummersend/trivia/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/shrines/cassettebeasts/articles/</loc>
|
<loc>https://leilukin.com/shrines/cassettebeasts/articles/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/shrines/cassettebeasts/facts/</loc>
|
<loc>https://leilukin.com/shrines/cassettebeasts/facts/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/shrines/cassettebeasts/featured/</loc>
|
<loc>https://leilukin.com/shrines/cassettebeasts/featured/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/shrines/cassettebeasts/gamelog/</loc>
|
<loc>https://leilukin.com/shrines/cassettebeasts/gamelog/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/shrines/cassettebeasts/resources/</loc>
|
<loc>https://leilukin.com/shrines/cassettebeasts/resources/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/shrines/starwarskotor/articles/</loc>
|
<loc>https://leilukin.com/shrines/starwarskotor/articles/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/shrines/starwarskotor/guides/</loc>
|
<loc>https://leilukin.com/shrines/starwarskotor/guides/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/shrines/starwarskotor/resources/</loc>
|
<loc>https://leilukin.com/shrines/starwarskotor/resources/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/shrines/starwarskotor/resources/kotor-same-gender-romance-mods/</loc>
|
<loc>https://leilukin.com/shrines/starwarskotor/resources/kotor-same-gender-romance-mods/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/shrines/starwarskotor/resources/kotor2-female-exile-recruit-handmaiden-mods/</loc>
|
<loc>https://leilukin.com/shrines/starwarskotor/resources/kotor2-female-exile-recruit-handmaiden-mods/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/shrines/starwarskotor/resources/tslrcm-m478ep-modules-music/</loc>
|
<loc>https://leilukin.com/shrines/starwarskotor/resources/tslrcm-m478ep-modules-music/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/shrines/starwarskotor/universes/</loc>
|
<loc>https://leilukin.com/shrines/starwarskotor/universes/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/archive/</loc>
|
<loc>https://leilukin.com/archive/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.056Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/categories/</loc>
|
<loc>https://leilukin.com/categories/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.060Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/changelogs/</loc>
|
<loc>https://leilukin.com/changelogs/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.060Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/about/</loc>
|
<loc>https://leilukin.com/about/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.060Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/adoptables/</loc>
|
<loc>https://leilukin.com/adoptables/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.060Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/articles/</loc>
|
<loc>https://leilukin.com/articles/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.060Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/blog/</loc>
|
<loc>https://leilukin.com/blog/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.060Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/guestbook/</loc>
|
<loc>https://leilukin.com/guestbook/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.060Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/links/</loc>
|
<loc>https://leilukin.com/links/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.060Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/now/</loc>
|
<loc>https://leilukin.com/now/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.060Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.699Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/projects/</loc>
|
<loc>https://leilukin.com/projects/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.060Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.703Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/shrines/</loc>
|
<loc>https://leilukin.com/shrines/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.060Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.703Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/accessibility/</loc>
|
<loc>https://leilukin.com/accessibility/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.060Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.703Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://leilukin.com/colophon/</loc>
|
<loc>https://leilukin.com/colophon/</loc>
|
||||||
<lastmod>2024-11-03T17:33:51.060Z</lastmod>
|
<lastmod>2024-11-04T05:39:56.703Z</lastmod>
|
||||||
<changefreq>weekly</changefreq>
|
<changefreq>weekly</changefreq>
|
||||||
<priority>0.5</priority>
|
<priority>0.5</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
Loading…
Reference in New Issue