mirror of
https://github.com/Damillora/Rinze.git
synced 2024-10-31 19:37:32 +00:00
44 lines
1.3 KiB
Svelte
44 lines
1.3 KiB
Svelte
|
<script>
|
||
|
import PageHeader from 'components/PageHeader.svelte';
|
||
|
import GalleryImage from 'components/GalleryImage.svelte';
|
||
|
</script>
|
||
|
|
||
|
<svelte:head>
|
||
|
<title>Damillora: Damillora's Virtual Memoir</title>
|
||
|
</svelte:head>
|
||
|
|
||
|
<div class="page">
|
||
|
<PageHeader>
|
||
|
<h1>Damillora's Virtual Memoir</h1>
|
||
|
<p>
|
||
|
<a href="https://blog.nanao.moe">live</a>
|
||
|
•
|
||
|
<a href="https://github.com/Damillora/Yuika">source code</a>
|
||
|
</p>
|
||
|
</PageHeader>
|
||
|
<main class="container mx-auto main">
|
||
|
<h2>Description</h2>
|
||
|
<p>
|
||
|
Damillora's Virtual Memoir is my hobby-related blog, writing about games and idols.
|
||
|
</p>
|
||
|
<p>
|
||
|
The blog runs on Ghost, a publication-focused CMS, while the theme uses Tailwind CSS for its CSS framework.
|
||
|
</p>
|
||
|
<h2>Technologies</h2>
|
||
|
<ul>
|
||
|
<li>Ghost</li>
|
||
|
<li>Tailwind CSS</li>
|
||
|
<li>jQuery</li>
|
||
|
</ul>
|
||
|
<h2>Screenshots</h2>
|
||
|
<div class="gallery">
|
||
|
<GalleryImage src="/images/projects/yuika/1.png" />
|
||
|
<GalleryImage src="/images/projects/yuika/2.png" />
|
||
|
<GalleryImage src="/images/projects/yuika/3.png" />
|
||
|
<GalleryImage src="/images/projects/yuika/4.png" />
|
||
|
<GalleryImage src="/images/projects/yuika/5.png" />
|
||
|
<GalleryImage src="/images/projects/yuika/6.png" />
|
||
|
</div>
|
||
|
|
||
|
</main>
|
||
|
</div>
|