Skip to content
Snippets Groups Projects
Commit cba5e7ba authored by Trirst's avatar Trirst
Browse files

Add titles to pages

parent 7b91a900
No related branches found
No related tags found
No related merge requests found
......@@ -27,6 +27,10 @@
});
</script>
<svelte:head>
<title>Browse</title>
</svelte:head>
<PaginationBar bind:currentPage bind:lastPage />
<ImageList snowflakes={pageSnowflakes} />
<PaginationBar bind:currentPage bind:lastPage />
<svelte:head>
<title>Home</title>
</svelte:head>
\ No newline at end of file
......@@ -46,6 +46,10 @@
});
</script>
<svelte:head>
<title>{params.snowflake}</title>
</svelte:head>
<div class="flex flex-row space-x-12">
<div class="pl-2">
<ul>
......
......@@ -70,6 +70,10 @@
}
</script>
<svelte:head>
<title>Tag</title>
</svelte:head>
<section class="m-2 space-y-4">
<div class="space-x-4">
<input type="text" placeholder="Tag name" bind:value={tag} />
......
......@@ -61,6 +61,10 @@
}
</script>
<svelte:head>
<title>Upload</title>
</svelte:head>
<main class="flex flex-col items-center mx-auto max-w-4xl">
<div>
<input
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment