+

+
+ #{fumo.id}
+ Featuring: {(fumo.involved.length > 0 ? fumo.involved.join(" ") : "No one")}
+
+
+
+
+
\ No newline at end of file
diff --git a/fumo-web/src/lib/Pagination.svelte b/fumo-web/src/lib/Pagination.svelte
new file mode 100644
index 0000000..55cf389
--- /dev/null
+++ b/fumo-web/src/lib/Pagination.svelte
@@ -0,0 +1,35 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/fumo-web/src/lib/index.ts b/fumo-web/src/lib/index.ts
new file mode 100644
index 0000000..dfd95a9
--- /dev/null
+++ b/fumo-web/src/lib/index.ts
@@ -0,0 +1,10 @@
+// place files you want to import through the `$lib` alias in this folder.
+
+
+export interface APIFumo {
+ id: number;
+ caption: string;
+ img: string;
+ attribution: string;
+ involved: string[];
+}
\ No newline at end of file
diff --git a/fumo-web/src/routes/+layout.svelte b/fumo-web/src/routes/+layout.svelte
new file mode 100644
index 0000000..1e9876e
--- /dev/null
+++ b/fumo-web/src/routes/+layout.svelte
@@ -0,0 +1,10 @@
+
+
+