From bd8e98d7e24c4dbaee7db6ec7955f7c2f6d396a6 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Tue, 9 Mar 2021 22:43:12 +0100 Subject: Update to SvelteKit --- app/components/author/author.svelte | 0 app/components/error_block/error_block.svelte | 31 ------------ app/components/footer/footer.svelte | 47 ------------------ app/components/forum_list/forum_list.svelte | 52 -------------------- app/components/glyph/glyph.svelte | 38 --------------- app/components/header/header.svelte | 42 ---------------- app/components/home/home.svelte | 3 -- app/components/invalid_route/invalid_route.svelte | 2 - .../language_selector/language_selector.svelte | 28 ----------- app/components/post/post.svelte | 25 ---------- app/components/topic/topic.svelte | 57 ---------------------- app/components/topic_index/topic_index.svelte | 8 --- 12 files changed, 333 deletions(-) delete mode 100644 app/components/author/author.svelte delete mode 100644 app/components/error_block/error_block.svelte delete mode 100644 app/components/footer/footer.svelte delete mode 100644 app/components/forum_list/forum_list.svelte delete mode 100644 app/components/glyph/glyph.svelte delete mode 100644 app/components/header/header.svelte delete mode 100644 app/components/home/home.svelte delete mode 100644 app/components/invalid_route/invalid_route.svelte delete mode 100644 app/components/language_selector/language_selector.svelte delete mode 100644 app/components/post/post.svelte delete mode 100644 app/components/topic/topic.svelte delete mode 100644 app/components/topic_index/topic_index.svelte (limited to 'app/components') diff --git a/app/components/author/author.svelte b/app/components/author/author.svelte deleted file mode 100644 index e69de29..0000000 diff --git a/app/components/error_block/error_block.svelte b/app/components/error_block/error_block.svelte deleted file mode 100644 index e46afa1..0000000 --- a/app/components/error_block/error_block.svelte +++ /dev/null @@ -1,31 +0,0 @@ - - -
-

{$_('error.generic.title')}

-

{message || $_('error.generic.message')}

-
- - - diff --git a/app/components/footer/footer.svelte b/app/components/footer/footer.svelte deleted file mode 100644 index 2d45cef..0000000 --- a/app/components/footer/footer.svelte +++ /dev/null @@ -1,47 +0,0 @@ - - - - - diff --git a/app/components/forum_list/forum_list.svelte b/app/components/forum_list/forum_list.svelte deleted file mode 100644 index 5ce4dc1..0000000 --- a/app/components/forum_list/forum_list.svelte +++ /dev/null @@ -1,52 +0,0 @@ - - - - - diff --git a/app/components/glyph/glyph.svelte b/app/components/glyph/glyph.svelte deleted file mode 100644 index 45a415b..0000000 --- a/app/components/glyph/glyph.svelte +++ /dev/null @@ -1,38 +0,0 @@ - - - - - diff --git a/app/components/header/header.svelte b/app/components/header/header.svelte deleted file mode 100644 index edcbc79..0000000 --- a/app/components/header/header.svelte +++ /dev/null @@ -1,42 +0,0 @@ -
- -
- - diff --git a/app/components/home/home.svelte b/app/components/home/home.svelte deleted file mode 100644 index 280bb5d..0000000 --- a/app/components/home/home.svelte +++ /dev/null @@ -1,3 +0,0 @@ -

Welcome.

-

You are now in a forum. Select a category from the left or input a - valid URL.

diff --git a/app/components/invalid_route/invalid_route.svelte b/app/components/invalid_route/invalid_route.svelte deleted file mode 100644 index 32225f1..0000000 --- a/app/components/invalid_route/invalid_route.svelte +++ /dev/null @@ -1,2 +0,0 @@ -

This is not right.

-

This URL is not valid. Try again.

diff --git a/app/components/language_selector/language_selector.svelte b/app/components/language_selector/language_selector.svelte deleted file mode 100644 index 67c0814..0000000 --- a/app/components/language_selector/language_selector.svelte +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - diff --git a/app/components/post/post.svelte b/app/components/post/post.svelte deleted file mode 100644 index fad7628..0000000 --- a/app/components/post/post.svelte +++ /dev/null @@ -1,25 +0,0 @@ - - - -
-

It's just how it is...

-
-
- - diff --git a/app/components/topic/topic.svelte b/app/components/topic/topic.svelte deleted file mode 100644 index 4a55930..0000000 --- a/app/components/topic/topic.svelte +++ /dev/null @@ -1,57 +0,0 @@ - - -
-

This is a post in the forum.

- - - -
-

This is a main topic in the forum. Does that abstraction still even make sense?

-

Is this really it??

-

This might all be fake but at least the links look purple when visited

-
-
- -
-

It's just how it is...

-
-
-
- - diff --git a/app/components/topic_index/topic_index.svelte b/app/components/topic_index/topic_index.svelte deleted file mode 100644 index 3de83bb..0000000 --- a/app/components/topic_index/topic_index.svelte +++ /dev/null @@ -1,8 +0,0 @@ - - - -

Topic Index.

-

This component lists topics for category or tag with id: {params.id}

-- cgit