This repository has been archived by the owner on May 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.svelte
133 lines (123 loc) · 3.08 KB
/
index.svelte
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<script lang="ts">
import type { IStory } from "../utils/types";
import { PartKind, Rating, State } from "../utils/types";
import CardStory from '../components/CardStory.svelte';
let stories: IStory[] = [
{
id: "",
name: "The Royal Night Sky",
summary: [
{
id: "",
kind: PartKind.Paragraph,
content: "4 years without a job, and Hajime’s desperate. If being one of the thousand nobody workers at Jabberwock palace is what it takes to get by, then so be it. His first priority should probably be to lay low, and therefore he should stop cursing out the king, but when he's doing his job so terribly then what is Hajime supposed to do? Leave him be?",
},
{
id: "",
kind: PartKind.Paragraph,
content: "Komaeda Nagito has been a ruler since the young age of 16 after an assassination attempt ended with both his parents dead and him the only survivor, and he can't remember anything rather then the pressure it takes to rule a kingdom and keep the peace. This loudmouth servant is a nice change from the normal. Shrouded in mystery and a past that he would obviously rather keep hidden, Nagito is determined to figure out Hinata Hajime, and whether he's good or bad luck.",
},
{
id: "",
kind: PartKind.Paragraph,
content: "Junko’s just starting a war that's destroying the world, so you know, the normal.",
},
],
rating: Rating.Teen,
state: State.InProgress,
authors: [
{
id: "",
name: "Im_Miss_Understood",
},
],
commissioners: [],
dedicatees: [],
origins: [
{
id: "",
text: "Dangan Ronpa - All Media Types",
},
{
id: "",
text: "Dangan Ronpa - All Media Types",
},
],
warnings: [
{
id: "/",
text: "Creator Chose Not To Use Archive Warnings",
}
],
pairings: [
{
id: "/",
text: "Hinata Hajime/Komaeda Nagito",
minor: false,
},
{
id: "/",
text: "Hinata Hajime/Komaeda Nagito",
minor: true,
},
],
characters: [
{
id: "/",
text: "Hinata Hajime",
minor: false,
},
{
id: "/",
text: "Komaeda Nagito",
minor: false,
},
{
id: "/",
text: "Kamukura Izuru",
minor: false,
},
{
id: "/",
text: "Naegi Makoto",
minor: false,
},
{
id: "/",
text: "Enoshima Junko",
minor: false,
},
{
id: "/",
text: "Nanami Chiaki",
minor: false,
},
{
id: "/",
text: "Class 77 (Dangan Ronpa)",
minor: false,
},
{
id: "/",
text: "Naegi Komaru",
minor: true,
}
],
tags: [
{
id: "/",
text: "Alternate Universe - Royalty",
}
],
}
];
</script>
<svelte:head>
<title>home | story</title>
</svelte:head>
{#each stories as story (story.id)}
<CardStory {story} />
<div class="hidden sm:block sm:px-6 lg:px-8 text-sm" aria-hidden="true">
<div class="border-t border-gray-700"></div>
</div>
{/each}