Compare commits
10 commits
Author | SHA1 | Date | |
---|---|---|---|
592df7d71d | |||
85a95c3812 | |||
9b0c82834c | |||
b54d89b92b | |||
2de9d62b76 | |||
66f30e0645 | |||
1c5be72e77 | |||
ff45976e1f | |||
d47996b308 | |||
e14e66bcf9 |
9 changed files with 50 additions and 9 deletions
|
@ -26,6 +26,11 @@ jobs:
|
||||||
node-version: 24
|
node-version: 24
|
||||||
cache: 'pnpm'
|
cache: 'pnpm'
|
||||||
|
|
||||||
|
# - uses: https://github.com/denoland/setup-deno@v2
|
||||||
|
# with:
|
||||||
|
# deno-version: vx.x.x
|
||||||
|
# cache: true
|
||||||
|
|
||||||
- name: Install SSH key
|
- name: Install SSH key
|
||||||
uses: https://github.com/shimataro/ssh-key-action@v2
|
uses: https://github.com/shimataro/ssh-key-action@v2
|
||||||
with:
|
with:
|
||||||
|
@ -35,9 +40,11 @@ jobs:
|
||||||
if_key_exists: fail
|
if_key_exists: fail
|
||||||
|
|
||||||
- run: pnpm install
|
- run: pnpm install
|
||||||
|
# - run: deno install
|
||||||
|
|
||||||
- name: Build website
|
- name: Build website
|
||||||
run: pnpm run build-action
|
run: pnpm run build-action
|
||||||
|
# run: deno run build-action
|
||||||
|
|
||||||
- name: Create folder if not exists
|
- name: Create folder if not exists
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
BIN
public/static/img/88x31/BuhMoe.png
Normal file
BIN
public/static/img/88x31/BuhMoe.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.8 KiB |
|
@ -3,7 +3,7 @@ import { Image, Picture } from "astro:assets";
|
||||||
|
|
||||||
const { name, image, target } = Astro.props;
|
const { name, image, target } = Astro.props;
|
||||||
---
|
---
|
||||||
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="max" decoding="async" loading="lazy" formats={['webp']} /></a>
|
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="max" decoding="async" loading="lazy" formats={['avif', 'webp']} /></a>
|
||||||
<style>
|
<style>
|
||||||
img {
|
img {
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { Image, Picture } from "astro:assets";
|
||||||
|
|
||||||
const { name, image, target } = Astro.props;
|
const { name, image, target } = Astro.props;
|
||||||
---
|
---
|
||||||
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="high" decoding="async" loading="lazy" formats={['webp']} /></a>
|
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="high" decoding="async" loading="lazy" formats={['avif', 'webp']} /></a>
|
||||||
<style>
|
<style>
|
||||||
img {
|
img {
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { Image, Picture } from "astro:assets";
|
||||||
|
|
||||||
const { name, image, target } = Astro.props;
|
const { name, image, target } = Astro.props;
|
||||||
---
|
---
|
||||||
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="low" decoding="async" loading="lazy" formats={['webp']} /></a>
|
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="low" decoding="async" loading="lazy" formats={['avif', 'webp']} /></a>
|
||||||
<style>
|
<style>
|
||||||
img {
|
img {
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
|
|
16
src/components/FriendLinkLowAnimated.astro
Normal file
16
src/components/FriendLinkLowAnimated.astro
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
---
|
||||||
|
import { Image, Picture } from "astro:assets";
|
||||||
|
|
||||||
|
const { name, image, target } = Astro.props;
|
||||||
|
---
|
||||||
|
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="low" decoding="async" loading="lazy" formats={['webp']} /></a>
|
||||||
|
<style>
|
||||||
|
img {
|
||||||
|
image-rendering: pixelated;
|
||||||
|
min-width: 88px;
|
||||||
|
width: 176px;
|
||||||
|
min-height: 31px;
|
||||||
|
height: 62px;
|
||||||
|
padding: 4px;
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -3,7 +3,7 @@ import { Image, Picture } from "astro:assets";
|
||||||
|
|
||||||
const { name, image, target } = Astro.props;
|
const { name, image, target } = Astro.props;
|
||||||
---
|
---
|
||||||
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="mid" decoding="async" loading="lazy" formats={['webp']} /></a>
|
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="mid" decoding="async" loading="lazy" formats={['avif', 'webp']} /></a>
|
||||||
<style>
|
<style>
|
||||||
img {
|
img {
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
|
|
16
src/components/FriendLinkMidAnimated.astro
Normal file
16
src/components/FriendLinkMidAnimated.astro
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
---
|
||||||
|
import { Image, Picture } from "astro:assets";
|
||||||
|
|
||||||
|
const { name, image, target } = Astro.props;
|
||||||
|
---
|
||||||
|
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="mid" decoding="async" loading="lazy" formats={['webp']} /></a>
|
||||||
|
<style>
|
||||||
|
img {
|
||||||
|
image-rendering: pixelated;
|
||||||
|
min-width: 88px;
|
||||||
|
width: 176px;
|
||||||
|
min-height: 31px;
|
||||||
|
height: 62px;
|
||||||
|
padding: 4px;
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -7,6 +7,8 @@ import BaseLayout from "../layouts/BaseLayout.astro";
|
||||||
import FriendLink from "../components/FriendLinkHigh.astro";
|
import FriendLink from "../components/FriendLinkHigh.astro";
|
||||||
import FriendLinkMid from "../components/FriendLinkMid.astro";
|
import FriendLinkMid from "../components/FriendLinkMid.astro";
|
||||||
import FriendLinkLow from "../components/FriendLinkLow.astro";
|
import FriendLinkLow from "../components/FriendLinkLow.astro";
|
||||||
|
import FriendLinkLowAnimated from "../components/FriendLinkLowAnimated.astro";
|
||||||
|
import FriendLinkMidAnimated from "../components/FriendLinkMidAnimated.astro";
|
||||||
const pageTitle = "Aria";
|
const pageTitle = "Aria";
|
||||||
|
|
||||||
const currentDate = new Date();
|
const currentDate = new Date();
|
||||||
|
@ -73,9 +75,9 @@ const age = seconds / 31556952;
|
||||||
target="https://ata.moe"
|
target="https://ata.moe"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<FriendLink
|
<FriendLinkLow
|
||||||
name="Amemoia"
|
name="Amemoia"
|
||||||
image="https://buh.moe/resources/buttons/88x31.gif"
|
image="/static/img/88x31/BuhMoe.png"
|
||||||
target="https://buh.moe/"
|
target="https://buh.moe/"
|
||||||
/>
|
/>
|
||||||
<FriendLink
|
<FriendLink
|
||||||
|
@ -93,7 +95,7 @@ const age = seconds / 31556952;
|
||||||
image="https://notnite.com/buttons/notnite.png"
|
image="https://notnite.com/buttons/notnite.png"
|
||||||
target="https://notnite.com/"
|
target="https://notnite.com/"
|
||||||
/>
|
/>
|
||||||
<FriendLinkLow
|
<FriendLinkLowAnimated
|
||||||
name="0x5066"
|
name="0x5066"
|
||||||
image="https://erisdump.neocities.org/buttons/88x31_2.gif"
|
image="https://erisdump.neocities.org/buttons/88x31_2.gif"
|
||||||
target="https://erisdump.neocities.org"
|
target="https://erisdump.neocities.org"
|
||||||
|
@ -124,12 +126,12 @@ const age = seconds / 31556952;
|
||||||
target="https://meow-d.github.io/"
|
target="https://meow-d.github.io/"
|
||||||
/>
|
/>
|
||||||
<div class="outline-dashed flex outline-3 mx-1">
|
<div class="outline-dashed flex outline-3 mx-1">
|
||||||
<FriendLink
|
<FriendLinkMidAnimated
|
||||||
name="~thermia"
|
name="~thermia"
|
||||||
image="https://girlthi.ng/~thermia/img/88x31/thermia.gif"
|
image="https://girlthi.ng/~thermia/img/88x31/thermia.gif"
|
||||||
target="https://girlthi.ng/~thermia/"
|
target="https://girlthi.ng/~thermia/"
|
||||||
/>
|
/>
|
||||||
<FriendLink
|
<FriendLinkMidAnimated
|
||||||
name="girlthi.ng"
|
name="girlthi.ng"
|
||||||
image="https://girlthi.ng/~thermia/img/88x31/girlthing.gif"
|
image="https://girlthi.ng/~thermia/img/88x31/girlthing.gif"
|
||||||
target="https://girlthi.ng/"
|
target="https://girlthi.ng/"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue