mirror of
https://github.com/Damillora/Rinze.git
synced 2024-11-22 03:37:33 +00:00
Add new data
This commit is contained in:
parent
4a9aefb149
commit
bfe77a70e5
@ -6,21 +6,15 @@
|
||||
|
||||
function open() {
|
||||
if (shown) {
|
||||
window.open(src, "_blank");
|
||||
window.open(src, '_blank');
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<div class="gallery__image">
|
||||
<img {src} {alt} on:click={() => (shown = !shown)} />
|
||||
<div
|
||||
class:gallery__popup={true}
|
||||
class:gallery__popup--hidden={!shown}
|
||||
>
|
||||
<div class:gallery__popup={true} class:gallery__popup--hidden={!shown}>
|
||||
<img class="gallery__popup-image" {src} {alt} on:click={open} draggable="false" />
|
||||
<div
|
||||
class="gallery__exit"
|
||||
on:click={() => (shown = !shown)}
|
||||
>x</div>
|
||||
<div class="gallery__exit" on:click={() => (shown = !shown)}>x</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -16,6 +16,14 @@
|
||||
This page lists various IDs from games that I play or try out, in varying states of activity.
|
||||
</p>
|
||||
<p>My most frequently played genre is rhythm games, but sometimes I try other genres too</p>
|
||||
<h2>Game Consoles</h2>
|
||||
<GameListItem
|
||||
name="Nintendo Switch"
|
||||
link="/games"
|
||||
playername="Damillora"
|
||||
gameid="SW-8522-2159-0226"
|
||||
/>
|
||||
|
||||
<h2>Game IDs</h2>
|
||||
<div class="card-list">
|
||||
<GameListItem
|
||||
@ -147,6 +155,12 @@
|
||||
playername="Damillora"
|
||||
gameid="ePmtJyTwzn"
|
||||
/>
|
||||
<GameListItem
|
||||
name="THE IDOLM@STER SideM GROWING STARS"
|
||||
link="/games/saisuta"
|
||||
playername="Damillora"
|
||||
gameid="XZFL59XM"
|
||||
/>
|
||||
<GameListItem
|
||||
name="Tokyo 7th Sisters"
|
||||
link="/games/t7s"
|
||||
|
22
src/routes/games/saisuta.svelte
Normal file
22
src/routes/games/saisuta.svelte
Normal file
@ -0,0 +1,22 @@
|
||||
<script>
|
||||
import PageHeader from '$lib/components/PageHeader.svelte';
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Damillora: Game Profile</title>
|
||||
</svelte:head>
|
||||
|
||||
<div class="page">
|
||||
<PageHeader>
|
||||
<h1 class="page-header__heading">Game Profile: THE iDOLM@STER SideM GROWING STARS</h1>
|
||||
<p class="page-header__text">
|
||||
<a class="post-header__social" href="https://sidem-gs.idolmaster-official.jp/">Game Website</a
|
||||
>
|
||||
</p>
|
||||
</PageHeader>
|
||||
<main class="container mx-auto main">
|
||||
<!-- <h2>My Review</h2>
|
||||
<blockquote />
|
||||
<p><a href="/">Read more</a></p> -->
|
||||
</main>
|
||||
</div>
|
Loading…
Reference in New Issue
Block a user