Rinze/src/routes/games/template.svelte

26 lines
667 B
Svelte
Raw Normal View History

2021-01-24 18:21:43 +00:00
<script>
2022-07-24 16:25:35 +00:00
import PageHeader from '@damillora/plachta/components/PageHeader/PageHeader.svelte';
import Container from '@damillora/plachta/components/Container/Container.svelte';
import Post from '@damillora/plachta/components/PageTypes/Post.svelte';
import PostMain from '@damillora/plachta/components/Post/PostMain.svelte';
2021-01-24 18:21:43 +00:00
</script>
<svelte:head>
2022-07-24 16:25:35 +00:00
<title>Damillora: Game Profile</title>
2021-01-24 18:21:43 +00:00
</svelte:head>
2022-07-24 16:25:35 +00:00
<Container>
<Post>
<PageHeader>
<h1>Game Profile:</h1>
<p><a href="/">Game Website</a></p>
</PageHeader>
<PostMain comments={false}>
<h2>My Review</h2>
<blockquote />
<p><a href="/">Read more</a></p>
</PostMain>
</Post>
</Container>