mirror of
https://github.com/helenclx/leilukin-site.git
synced 2025-04-15 12:40:51 +00:00
Build: (d2ebbf3) Adjust intendation in Nunjucks templates
This commit is contained in:
parent
8616413c4e
commit
797e0fccdd
@ -382,7 +382,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
|
||||
</a>
|
||||
</p>
|
||||
<time datetime="Wed Apr 09 2025 17:51:49 GMT+0000 (Coordinated Universal Time)">9 April 2025</time>
|
||||
<time datetime="Thu Apr 10 2025 14:41:15 GMT+0000 (Coordinated Universal Time)">10 April 2025</time>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
@ -392,7 +392,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
|
||||
</a>
|
||||
</p>
|
||||
<time datetime="Wed Apr 09 2025 17:51:49 GMT+0000 (Coordinated Universal Time)">9 April 2025</time>
|
||||
<time datetime="Thu Apr 10 2025 14:41:15 GMT+0000 (Coordinated Universal Time)">10 April 2025</time>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
@ -402,7 +402,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
|
||||
</a>
|
||||
</p>
|
||||
<time datetime="Wed Apr 09 2025 17:51:49 GMT+0000 (Coordinated Universal Time)">9 April 2025</time>
|
||||
<time datetime="Thu Apr 10 2025 14:41:15 GMT+0000 (Coordinated Universal Time)">10 April 2025</time>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
@ -412,7 +412,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
|
||||
</a>
|
||||
</p>
|
||||
<time datetime="Wed Apr 09 2025 17:51:49 GMT+0000 (Coordinated Universal Time)">9 April 2025</time>
|
||||
<time datetime="Thu Apr 10 2025 14:41:15 GMT+0000 (Coordinated Universal Time)">10 April 2025</time>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
@ -422,7 +422,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
|
||||
</a>
|
||||
</p>
|
||||
<time datetime="Wed Apr 09 2025 17:51:49 GMT+0000 (Coordinated Universal Time)">9 April 2025</time>
|
||||
<time datetime="Thu Apr 10 2025 14:41:15 GMT+0000 (Coordinated Universal Time)">10 April 2025</time>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
@ -432,7 +432,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
|
||||
</a>
|
||||
</p>
|
||||
<time datetime="Wed Apr 09 2025 17:51:49 GMT+0000 (Coordinated Universal Time)">9 April 2025</time>
|
||||
<time datetime="Thu Apr 10 2025 14:41:15 GMT+0000 (Coordinated Universal Time)">10 April 2025</time>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
@ -442,7 +442,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
|
||||
</a>
|
||||
</p>
|
||||
<time datetime="Wed Apr 09 2025 17:51:49 GMT+0000 (Coordinated Universal Time)">9 April 2025</time>
|
||||
<time datetime="Thu Apr 10 2025 14:41:15 GMT+0000 (Coordinated Universal Time)">10 April 2025</time>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
34
assets/js/F9wnUtIwEV.js
Normal file
34
assets/js/F9wnUtIwEV.js
Normal file
@ -0,0 +1,34 @@
|
||||
const hero = document.querySelector(".hero");
|
||||
const heroTopBarEl = document.querySelector(".hero__top-bar");
|
||||
const headerImgEl = document.querySelector(".hero__img");
|
||||
|
||||
|
||||
const todayEvent = getTodayEvent();
|
||||
|
||||
if (todayEvent) {
|
||||
heroTopBarEl.classList.remove('hidden');
|
||||
heroTopBarEl.innerHTML = todayEvent;
|
||||
}
|
||||
|
||||
function getTodayEvent() {
|
||||
const date = new Date();
|
||||
const month = date.getMonth() + 1;
|
||||
const day = date.getDate();
|
||||
const year = date.getFullYear();
|
||||
|
||||
const cbReleaseDate = new Date("2023-04-26").getFullYear();
|
||||
const pierReleaseDate = new Date("2023-10-04").getFullYear();
|
||||
const cbAnniversary = year - cbReleaseDate;
|
||||
const pierAnniversary = year - pierReleaseDate;
|
||||
|
||||
if (month === 4 && day === 26)
|
||||
return `
|
||||
Today is the ${cbAnniversary}-year anniversary of the release of <cite>Cassette Beasts</cite>!
|
||||
`;
|
||||
else if (month === 10 && day === 4)
|
||||
return `
|
||||
Today is the ${pierAnniversary}-year anniversary of the release of <cite>Pier of the Unknown</cite>, the first DLC expansion of <cite>Cassette Beasts</cite>!
|
||||
`;
|
||||
else
|
||||
return null;
|
||||
}
|
@ -1,34 +0,0 @@
|
||||
const hero = document.querySelector(".hero");
|
||||
const heroTopBarEl = document.querySelector(".hero__top-bar");
|
||||
const headerImgEl = document.querySelector(".hero__img");
|
||||
|
||||
|
||||
const todayEvent = getTodayEvent();
|
||||
|
||||
if (todayEvent) {
|
||||
heroTopBarEl.classList.remove('hidden');
|
||||
heroTopBarEl.innerHTML = todayEvent;
|
||||
}
|
||||
|
||||
function getTodayEvent() {
|
||||
const date = new Date();
|
||||
const month = date.getMonth() + 1;
|
||||
const day = date.getDate();
|
||||
const year = date.getFullYear();
|
||||
|
||||
const cbReleaseDate = new Date("2023-04-26").getFullYear();
|
||||
const pierReleaseDate = new Date("2023-10-04").getFullYear();
|
||||
const cbAnniversary = year - cbReleaseDate;
|
||||
const pierAnniversary = year - pierReleaseDate;
|
||||
|
||||
if (month === 4 && day === 26)
|
||||
return `
|
||||
Today is the ${cbAnniversary}-year anniversary of the release of <cite>Cassette Beasts</cite>!
|
||||
`;
|
||||
else if (month === 10 && day === 4)
|
||||
return `
|
||||
Today is the ${pierAnniversary}-year anniversary of the release of <cite>Pier of the Unknown</cite>, the first DLC expansion of <cite>Cassette Beasts</cite>!
|
||||
`;
|
||||
else
|
||||
return null;
|
||||
}
|
@ -1,40 +0,0 @@
|
||||
const hero = document.querySelector(".hero");
|
||||
const heroTopBarEl = document.querySelector(".hero__top-bar");
|
||||
const headerImgEl = document.querySelector(".hero__img");
|
||||
|
||||
|
||||
const todayEvent = getTodayEvent();
|
||||
|
||||
if (todayEvent) {
|
||||
heroTopBarEl.classList.remove('hidden');
|
||||
heroTopBarEl.innerHTML = todayEvent;
|
||||
}
|
||||
|
||||
function getTodayEvent() {
|
||||
const date = new Date();
|
||||
const month = date.getMonth() + 1;
|
||||
const day = date.getDate();
|
||||
const year = date.getFullYear();
|
||||
|
||||
const aseReleaseDate = new Date("2020-04-23").getFullYear();
|
||||
const aseAnniversary = year - aseReleaseDate;
|
||||
|
||||
if (month === 2 && day === 16)
|
||||
return `
|
||||
Today is Michelle Cheung's birthday. Happy Birthday Michelle!
|
||||
`;
|
||||
else if (month === 4 && day === 23)
|
||||
return `
|
||||
Today is the ${aseAnniversary}-year anniversary of the release of <cite>A Summer’s End — Hong Kong 1986</cite>!
|
||||
`;
|
||||
else if (month === 8 && day === 9)
|
||||
return `
|
||||
Today is Cecelia Cortes' birthday. Happy Birthday Cecelia!
|
||||
`;
|
||||
else if (month === 12 && day === 28)
|
||||
return `
|
||||
Today is Sam Wong's birthday. Happy Birthday Sam!
|
||||
`;
|
||||
else
|
||||
return null;
|
||||
}
|
@ -1,28 +0,0 @@
|
||||
const hero = document.querySelector(".hero");
|
||||
const heroTopBarEl = document.querySelector(".hero__top-bar");
|
||||
const headerImgEl = document.querySelector(".hero__img");
|
||||
|
||||
|
||||
const todayEvent = getTodayEvent();
|
||||
|
||||
if (todayEvent) {
|
||||
heroTopBarEl.classList.remove('hidden');
|
||||
heroTopBarEl.innerHTML = todayEvent;
|
||||
}
|
||||
|
||||
function getTodayEvent() {
|
||||
const date = new Date();
|
||||
const month = date.getMonth() + 1;
|
||||
const day = date.getDate();
|
||||
const year = date.getFullYear();
|
||||
|
||||
const orasReleaseDate = new Date("2014-11-21").getFullYear();
|
||||
const orasAnniversary = year - orasReleaseDate;
|
||||
|
||||
if (month === 11 && day === 21)
|
||||
return `
|
||||
Today is the ${orasAnniversary}-year anniversary of the release of <cite>Pokémon Omega Ruby"</cite> and <cite>Alpha Sapphire</cite>!
|
||||
`;
|
||||
else
|
||||
return null;
|
||||
}
|
34
assets/js/ha9Bfx20en.js
Normal file
34
assets/js/ha9Bfx20en.js
Normal file
@ -0,0 +1,34 @@
|
||||
const hero = document.querySelector(".hero");
|
||||
const heroTopBarEl = document.querySelector(".hero__top-bar");
|
||||
const headerImgEl = document.querySelector(".hero__img");
|
||||
|
||||
|
||||
const todayEvent = getTodayEvent();
|
||||
|
||||
if (todayEvent) {
|
||||
heroTopBarEl.classList.remove('hidden');
|
||||
heroTopBarEl.innerHTML = todayEvent;
|
||||
}
|
||||
|
||||
function getTodayEvent() {
|
||||
const date = new Date();
|
||||
const month = date.getMonth() + 1;
|
||||
const day = date.getDate();
|
||||
const year = date.getFullYear();
|
||||
|
||||
const kotor1ReleaseDate = new Date("2003-07-15").getFullYear();
|
||||
const kotor2ReleaseDate = new Date("2004-12-06").getFullYear();
|
||||
const kotor1Anniversary = year - kotor1ReleaseDate;
|
||||
const kotor2Anniversary = year - kotor2ReleaseDate;
|
||||
|
||||
if (month === 7 && day === 15)
|
||||
return `
|
||||
Today is the ${kotor1Anniversary}-year anniversary of the release of <cite>Star Wars: Knihgts of the Old Republic</cite>
|
||||
`;
|
||||
else if (month === 12 && day === 6)
|
||||
return `
|
||||
Today is the ${kotor2Anniversary}-year anniversary of the release of <cite>Star Wars: Knights of the Old Republic II — The Sith Lords</cite>
|
||||
`;
|
||||
else
|
||||
return null;
|
||||
}
|
40
assets/js/iBNdWgkziL.js
Normal file
40
assets/js/iBNdWgkziL.js
Normal file
@ -0,0 +1,40 @@
|
||||
const hero = document.querySelector(".hero");
|
||||
const heroTopBarEl = document.querySelector(".hero__top-bar");
|
||||
const headerImgEl = document.querySelector(".hero__img");
|
||||
|
||||
|
||||
const todayEvent = getTodayEvent();
|
||||
|
||||
if (todayEvent) {
|
||||
heroTopBarEl.classList.remove('hidden');
|
||||
heroTopBarEl.innerHTML = todayEvent;
|
||||
}
|
||||
|
||||
function getTodayEvent() {
|
||||
const date = new Date();
|
||||
const month = date.getMonth() + 1;
|
||||
const day = date.getDate();
|
||||
const year = date.getFullYear();
|
||||
|
||||
const aseReleaseDate = new Date("2020-04-23").getFullYear();
|
||||
const aseAnniversary = year - aseReleaseDate;
|
||||
|
||||
if (month === 2 && day === 16)
|
||||
return `
|
||||
Today is Michelle Cheung's birthday. Happy Birthday Michelle!
|
||||
`;
|
||||
else if (month === 4 && day === 23)
|
||||
return `
|
||||
Today is the ${aseAnniversary}-year anniversary of the release of <cite>A Summer’s End — Hong Kong 1986</cite>!
|
||||
`;
|
||||
else if (month === 8 && day === 9)
|
||||
return `
|
||||
Today is Cecelia Cortes' birthday. Happy Birthday Cecelia!
|
||||
`;
|
||||
else if (month === 12 && day === 28)
|
||||
return `
|
||||
Today is Sam Wong's birthday. Happy Birthday Sam!
|
||||
`;
|
||||
else
|
||||
return null;
|
||||
}
|
@ -1,34 +0,0 @@
|
||||
const hero = document.querySelector(".hero");
|
||||
const heroTopBarEl = document.querySelector(".hero__top-bar");
|
||||
const headerImgEl = document.querySelector(".hero__img");
|
||||
|
||||
|
||||
const todayEvent = getTodayEvent();
|
||||
|
||||
if (todayEvent) {
|
||||
heroTopBarEl.classList.remove('hidden');
|
||||
heroTopBarEl.innerHTML = todayEvent;
|
||||
}
|
||||
|
||||
function getTodayEvent() {
|
||||
const date = new Date();
|
||||
const month = date.getMonth() + 1;
|
||||
const day = date.getDate();
|
||||
const year = date.getFullYear();
|
||||
|
||||
const kotor1ReleaseDate = new Date("2003-07-15").getFullYear();
|
||||
const kotor2ReleaseDate = new Date("2004-12-06").getFullYear();
|
||||
const kotor1Anniversary = year - kotor1ReleaseDate;
|
||||
const kotor2Anniversary = year - kotor2ReleaseDate;
|
||||
|
||||
if (month === 7 && day === 15)
|
||||
return `
|
||||
Today is the ${kotor1Anniversary}-year anniversary of the release of <cite>Star Wars: Knihgts of the Old Republic</cite>
|
||||
`;
|
||||
else if (month === 12 && day === 6)
|
||||
return `
|
||||
Today is the ${kotor2Anniversary}-year anniversary of the release of <cite>Star Wars: Knights of the Old Republic II — The Sith Lords</cite>
|
||||
`;
|
||||
else
|
||||
return null;
|
||||
}
|
28
assets/js/sar7rmcrWc.js
Normal file
28
assets/js/sar7rmcrWc.js
Normal file
@ -0,0 +1,28 @@
|
||||
const hero = document.querySelector(".hero");
|
||||
const heroTopBarEl = document.querySelector(".hero__top-bar");
|
||||
const headerImgEl = document.querySelector(".hero__img");
|
||||
|
||||
|
||||
const todayEvent = getTodayEvent();
|
||||
|
||||
if (todayEvent) {
|
||||
heroTopBarEl.classList.remove('hidden');
|
||||
heroTopBarEl.innerHTML = todayEvent;
|
||||
}
|
||||
|
||||
function getTodayEvent() {
|
||||
const date = new Date();
|
||||
const month = date.getMonth() + 1;
|
||||
const day = date.getDate();
|
||||
const year = date.getFullYear();
|
||||
|
||||
const orasReleaseDate = new Date("2014-11-21").getFullYear();
|
||||
const orasAnniversary = year - orasReleaseDate;
|
||||
|
||||
if (month === 11 && day === 21)
|
||||
return `
|
||||
Today is the ${orasAnniversary}-year anniversary of the release of <cite>Pokémon Omega Ruby"</cite> and <cite>Alpha Sapphire</cite>!
|
||||
`;
|
||||
else
|
||||
return null;
|
||||
}
|
@ -385,7 +385,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
|
||||
</a>
|
||||
</p>
|
||||
<time datetime="Wed Apr 09 2025 17:51:49 GMT+0000 (Coordinated Universal Time)">9 April 2025</time>
|
||||
<time datetime="Thu Apr 10 2025 14:41:15 GMT+0000 (Coordinated Universal Time)">10 April 2025</time>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
@ -385,7 +385,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
|
||||
</a>
|
||||
</p>
|
||||
<time datetime="Wed Apr 09 2025 17:51:49 GMT+0000 (Coordinated Universal Time)">9 April 2025</time>
|
||||
<time datetime="Thu Apr 10 2025 14:41:15 GMT+0000 (Coordinated Universal Time)">10 April 2025</time>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
@ -395,7 +395,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
|
||||
</a>
|
||||
</p>
|
||||
<time datetime="Wed Apr 09 2025 17:51:49 GMT+0000 (Coordinated Universal Time)">9 April 2025</time>
|
||||
<time datetime="Thu Apr 10 2025 14:41:15 GMT+0000 (Coordinated Universal Time)">10 April 2025</time>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
@ -405,7 +405,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
|
||||
</a>
|
||||
</p>
|
||||
<time datetime="Wed Apr 09 2025 17:51:49 GMT+0000 (Coordinated Universal Time)">9 April 2025</time>
|
||||
<time datetime="Thu Apr 10 2025 14:41:15 GMT+0000 (Coordinated Universal Time)">10 April 2025</time>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
@ -415,7 +415,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
|
||||
</a>
|
||||
</p>
|
||||
<time datetime="Wed Apr 09 2025 17:51:49 GMT+0000 (Coordinated Universal Time)">9 April 2025</time>
|
||||
<time datetime="Thu Apr 10 2025 14:41:15 GMT+0000 (Coordinated Universal Time)">10 April 2025</time>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
@ -385,7 +385,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
|
||||
</a>
|
||||
</p>
|
||||
<time datetime="Wed Apr 09 2025 17:51:49 GMT+0000 (Coordinated Universal Time)">9 April 2025</time>
|
||||
<time datetime="Thu Apr 10 2025 14:41:15 GMT+0000 (Coordinated Universal Time)">10 April 2025</time>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
@ -395,7 +395,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
|
||||
</a>
|
||||
</p>
|
||||
<time datetime="Wed Apr 09 2025 17:51:49 GMT+0000 (Coordinated Universal Time)">9 April 2025</time>
|
||||
<time datetime="Thu Apr 10 2025 14:41:15 GMT+0000 (Coordinated Universal Time)">10 April 2025</time>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
@ -385,7 +385,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
|
||||
</a>
|
||||
</p>
|
||||
<time datetime="Wed Apr 09 2025 17:51:49 GMT+0000 (Coordinated Universal Time)">9 April 2025</time>
|
||||
<time datetime="Thu Apr 10 2025 14:41:15 GMT+0000 (Coordinated Universal Time)">10 April 2025</time>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
@ -385,7 +385,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
|
||||
</a>
|
||||
</p>
|
||||
<time datetime="Wed Apr 09 2025 17:51:49 GMT+0000 (Coordinated Universal Time)">9 April 2025</time>
|
||||
<time datetime="Thu Apr 10 2025 14:41:15 GMT+0000 (Coordinated Universal Time)">10 April 2025</time>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
@ -395,7 +395,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
|
||||
</a>
|
||||
</p>
|
||||
<time datetime="Wed Apr 09 2025 17:51:49 GMT+0000 (Coordinated Universal Time)">9 April 2025</time>
|
||||
<time datetime="Thu Apr 10 2025 14:41:15 GMT+0000 (Coordinated Universal Time)">10 April 2025</time>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
@ -405,7 +405,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
|
||||
</a>
|
||||
</p>
|
||||
<time datetime="Wed Apr 09 2025 17:51:49 GMT+0000 (Coordinated Universal Time)">9 April 2025</time>
|
||||
<time datetime="Thu Apr 10 2025 14:41:15 GMT+0000 (Coordinated Universal Time)">10 April 2025</time>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
@ -415,7 +415,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
|
||||
</a>
|
||||
</p>
|
||||
<time datetime="Wed Apr 09 2025 17:51:49 GMT+0000 (Coordinated Universal Time)">9 April 2025</time>
|
||||
<time datetime="Thu Apr 10 2025 14:41:15 GMT+0000 (Coordinated Universal Time)">10 April 2025</time>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
@ -425,7 +425,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
|
||||
</a>
|
||||
</p>
|
||||
<time datetime="Wed Apr 09 2025 17:51:49 GMT+0000 (Coordinated Universal Time)">9 April 2025</time>
|
||||
<time datetime="Thu Apr 10 2025 14:41:15 GMT+0000 (Coordinated Universal Time)">10 April 2025</time>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
@ -435,7 +435,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
|
||||
</a>
|
||||
</p>
|
||||
<time datetime="Wed Apr 09 2025 17:51:49 GMT+0000 (Coordinated Universal Time)">9 April 2025</time>
|
||||
<time datetime="Thu Apr 10 2025 14:41:15 GMT+0000 (Coordinated Universal Time)">10 April 2025</time>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
@ -267,7 +267,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/gkMWVz_as0.js" defer=""></script>
|
||||
<script src="/assets/js/yD6F_-Z9TC.js" defer=""></script>
|
||||
|
||||
|
||||
|
||||
@ -450,6 +450,7 @@ drop-shadow(0.1rem 0.1rem 0.2rem rgba(30, 30, 30, 0.8))
|
||||
|
||||
<p><a href="https://status.cafe/users/leilukin">View my statuses on status.cafe</a></p>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<section class="content__section">
|
||||
|
@ -348,7 +348,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/NhcNUzmo53.js" defer=""></script>
|
||||
<script src="/assets/js/iBNdWgkziL.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -348,7 +348,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/NhcNUzmo53.js" defer=""></script>
|
||||
<script src="/assets/js/iBNdWgkziL.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -348,7 +348,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/NhcNUzmo53.js" defer=""></script>
|
||||
<script src="/assets/js/iBNdWgkziL.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -348,7 +348,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/NhcNUzmo53.js" defer=""></script>
|
||||
<script src="/assets/js/iBNdWgkziL.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -356,7 +356,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/L0LJfaOGLF.js" defer=""></script>
|
||||
<script src="/assets/js/F9wnUtIwEV.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -356,7 +356,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/L0LJfaOGLF.js" defer=""></script>
|
||||
<script src="/assets/js/F9wnUtIwEV.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -312,7 +312,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/L0LJfaOGLF.js" defer=""></script>
|
||||
<script src="/assets/js/F9wnUtIwEV.js" defer=""></script>
|
||||
|
||||
|
||||
|
||||
|
@ -356,7 +356,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/L0LJfaOGLF.js" defer=""></script>
|
||||
<script src="/assets/js/F9wnUtIwEV.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -356,7 +356,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/L0LJfaOGLF.js" defer=""></script>
|
||||
<script src="/assets/js/F9wnUtIwEV.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -356,7 +356,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/L0LJfaOGLF.js" defer=""></script>
|
||||
<script src="/assets/js/F9wnUtIwEV.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -356,7 +356,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/L0LJfaOGLF.js" defer=""></script>
|
||||
<script src="/assets/js/F9wnUtIwEV.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -356,7 +356,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/L0LJfaOGLF.js" defer=""></script>
|
||||
<script src="/assets/js/F9wnUtIwEV.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -357,7 +357,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/UWDsqT8R4D.js" defer=""></script>
|
||||
<script src="/assets/js/sar7rmcrWc.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -304,7 +304,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/iV6ry03doh.js" defer=""></script>
|
||||
<script src="/assets/js/ha9Bfx20en.js" defer=""></script>
|
||||
|
||||
|
||||
|
||||
|
@ -348,7 +348,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/iV6ry03doh.js" defer=""></script>
|
||||
<script src="/assets/js/ha9Bfx20en.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -304,7 +304,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/iV6ry03doh.js" defer=""></script>
|
||||
<script src="/assets/js/ha9Bfx20en.js" defer=""></script>
|
||||
|
||||
|
||||
|
||||
|
@ -348,7 +348,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/iV6ry03doh.js" defer=""></script>
|
||||
<script src="/assets/js/ha9Bfx20en.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -304,7 +304,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/iV6ry03doh.js" defer=""></script>
|
||||
<script src="/assets/js/ha9Bfx20en.js" defer=""></script>
|
||||
|
||||
|
||||
|
||||
|
@ -304,7 +304,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/iV6ry03doh.js" defer=""></script>
|
||||
<script src="/assets/js/ha9Bfx20en.js" defer=""></script>
|
||||
|
||||
|
||||
<script src="/assets/js/copycode.js" defer=""></script>
|
||||
|
@ -304,7 +304,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/iV6ry03doh.js" defer=""></script>
|
||||
<script src="/assets/js/ha9Bfx20en.js" defer=""></script>
|
||||
|
||||
|
||||
|
||||
|
@ -304,7 +304,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/iV6ry03doh.js" defer=""></script>
|
||||
<script src="/assets/js/ha9Bfx20en.js" defer=""></script>
|
||||
|
||||
|
||||
|
||||
|
@ -304,7 +304,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/iV6ry03doh.js" defer=""></script>
|
||||
<script src="/assets/js/ha9Bfx20en.js" defer=""></script>
|
||||
|
||||
|
||||
|
||||
|
@ -348,7 +348,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/iV6ry03doh.js" defer=""></script>
|
||||
<script src="/assets/js/ha9Bfx20en.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -348,7 +348,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/iV6ry03doh.js" defer=""></script>
|
||||
<script src="/assets/js/ha9Bfx20en.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -348,7 +348,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/iV6ry03doh.js" defer=""></script>
|
||||
<script src="/assets/js/ha9Bfx20en.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -348,7 +348,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/iV6ry03doh.js" defer=""></script>
|
||||
<script src="/assets/js/ha9Bfx20en.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -348,7 +348,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/iV6ry03doh.js" defer=""></script>
|
||||
<script src="/assets/js/ha9Bfx20en.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -348,7 +348,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/iV6ry03doh.js" defer=""></script>
|
||||
<script src="/assets/js/ha9Bfx20en.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -348,7 +348,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/iV6ry03doh.js" defer=""></script>
|
||||
<script src="/assets/js/ha9Bfx20en.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -348,7 +348,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/iV6ry03doh.js" defer=""></script>
|
||||
<script src="/assets/js/ha9Bfx20en.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -348,7 +348,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/iV6ry03doh.js" defer=""></script>
|
||||
<script src="/assets/js/ha9Bfx20en.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -348,7 +348,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/iV6ry03doh.js" defer=""></script>
|
||||
<script src="/assets/js/ha9Bfx20en.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
@ -304,7 +304,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/iV6ry03doh.js" defer=""></script>
|
||||
<script src="/assets/js/ha9Bfx20en.js" defer=""></script>
|
||||
|
||||
|
||||
|
||||
|
@ -348,7 +348,7 @@
|
||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
||||
|
||||
|
||||
<script src="/assets/js/iV6ry03doh.js" defer=""></script>
|
||||
<script src="/assets/js/ha9Bfx20en.js" defer=""></script>
|
||||
|
||||
<script src="/assets/js/details-utils.js" defer=""></script>
|
||||
|
||||
|
88
sitemap.xml
88
sitemap.xml
@ -1406,265 +1406,265 @@
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/blog/posts/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.273Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.606Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/changelogs/2022/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.280Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.613Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/changelogs/2023/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.280Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.613Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/changelogs/2024/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.280Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.614Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/changelogs/2025/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.280Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.614Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/changelogs/layouts/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.280Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.614Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.280Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.614Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/links/mass-effect-le-mod-list/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.281Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.614Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/links/stardew-valley-mod-list/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.281Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.614Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/projects/code/bellabuffs-phpmailer/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.281Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.615Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/projects/playlists/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.281Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.615Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/projects/snippets/disability-pride-flag-background/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.281Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.615Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/shrines/asummersend/gallery/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.281Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.615Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/shrines/asummersend/playlists/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.281Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.615Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/shrines/asummersend/trivia/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.281Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.615Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/shrines/cassettebeasts/articles/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.282Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.615Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/shrines/cassettebeasts/facts/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.282Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.616Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/shrines/cassettebeasts/featured/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.282Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.616Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/shrines/cassettebeasts/gamelog/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.282Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.616Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/shrines/cassettebeasts/resources/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.282Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.616Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/shrines/starwarskotor/articles/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.282Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.616Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/shrines/starwarskotor/guides/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.283Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.617Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/shrines/starwarskotor/resources/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.283Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.617Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/shrines/starwarskotor/resources/kotor-same-gender-romance-mods/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.283Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.617Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/shrines/starwarskotor/resources/kotor1-mod-list/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.284Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.617Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/shrines/starwarskotor/resources/kotor2-female-exile-recruit-handmaiden-mods/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.284Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.617Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/shrines/starwarskotor/resources/kotor2-mod-list/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.284Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.618Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/shrines/starwarskotor/resources/tslrcm-m478ep-modules-music/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.284Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.618Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/shrines/starwarskotor/universes/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.284Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.618Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/archive/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.284Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.618Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/categories/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.284Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.618Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/changelogs/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.284Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.618Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/uses/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.284Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.618Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/about/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.284Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.618Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/adoptables/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.284Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.618Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/articles/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.284Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.618Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/blog/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.284Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.618Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/guestbook/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.284Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.618Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/links/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.285Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.618Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/now/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.285Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.618Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/projects/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.285Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.618Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/shrines/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.285Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.618Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/accessibility/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.285Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.619Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://leilukin.com/colophon/</loc>
|
||||
<lastmod>2025-04-09T17:51:49.285Z</lastmod>
|
||||
<lastmod>2025-04-10T14:41:15.619Z</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
|
Loading…
x
Reference in New Issue
Block a user