Move to astro
All checks were successful
Build & Depoly / Depoly blog (push) Successful in 1m52s

This commit is contained in:
thislight 2025-04-11 21:50:48 +08:00
parent 729704984c
commit 4bd975796e
148 changed files with 4865 additions and 27561 deletions

View file

@ -0,0 +1,22 @@
---
interface Props {
id: string;
postscript?: string
}
const { id, postscript } = Astro.props;
const link = new URL(`https://store.steampowered.com/widget/${id}/`)
if (postscript) {
link.searchParams.set("t", postscript)
}
---
<iframe
src={link.toString()}
frameborder="0"
width="100%"
height="190">
</iframe>