Compare commits

...

2 commits

Author SHA1 Message Date
77b8fd39bd
Link deploy status badge to git.aria.coffee 2025-05-14 20:55:32 +10:00
2f1e668b94
Test out animated avif support 2025-05-14 20:53:48 +10:00
4 changed files with 24 additions and 1 deletions

View file

@ -18,7 +18,7 @@ const COMMIT = `<a href=${commitURL} target="_blank">${execSync(`git log -1 --pr
> <Icon name="mdi:rss" class={"svg-inline"}/>RSS Feed</a
> | <span class="tooltip"><a href="/special_blog"
> <Icon name="mdi:rss" class={"svg-inline"}/>blog for robots!</a
> <span class="tooltiptext"><nobr>AI Honeypot~</nobr></span></span> | <img src="https://git.aria.coffee/BuyMyAria/aria.coffee/badges/workflows/deploy.yaml/badge.svg" width="130px" height="23" style="display: inline-block;" />
> <span class="tooltiptext"><nobr>AI Honeypot~</nobr></span></span> | <a href="https://git.aria.coffee/BuyMyAria/aria.coffee/actions?workflow=deploy.yaml" target="_blank"><img src="https://git.aria.coffee/BuyMyAria/aria.coffee/badges/workflows/deploy.yaml/badge.svg" width="130px" height="23" style="display: inline-block;" /></a>
</p>
</div>
<div class="flex">

19
src/pages/avif-test.astro Normal file
View file

@ -0,0 +1,19 @@
---
import Partition from "../components/Partition.astro";
import BaseLayoutJxl from "../layouts/BaseLayoutJxl.astro";
import BaseLayout from "../layouts/BaseLayout.astro";
const pageTitle = "Testing animated AVIF support!";
---
<BaseLayout pageTitle={pageTitle}>
<Partition>
<h1 class="text-4xl font-bold">{pageTitle}</h1>
</Partition>
<Partition>
<main>
<h3 class="text-2xl text-center font-bold">TEST:</h3>
<img src="/static/img/tests/mage-demon-queen-fastflix-0bb2.avif" />
</main>
</Partition>
</BaseLayout>

View file

@ -10,13 +10,17 @@ const pageTitle = "A bunch of other pages!";
<Partition>
<h1 class="text-4xl font-bold">{pageTitle}</h1>
<p>Here are some other pages I have for various reasons!</p>
<p>A lot of them will most likely be tests and experiments or cool things I want to share but dont need to be directly in the nav bar lol</p>
<main>
<ul class=" list-disc px-8">
<li><a href="/albums">Albums and Gallerys</a></li>
<li><a href="/jxl-testing">JpegXL Decoder Test</a></li>
<li><a href="/other buttons">Extra 88x31 buttons</a></li>
<li><a href="/extreme-format-test">Goofy video format test</a></li>
<li><a href="/avif-test">Quick test of animated AVIF</a></li>
</ul>
</main>
</Partition>
</BaseLayout>