Add meta description tags and fix some styling issues
This commit is contained in:
parent
afc45328cf
commit
6ff9165c38
|
|
@ -3,11 +3,12 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<svelte:head>
|
<svelte:head>
|
||||||
|
<meta name="description" content={$page.error?.message} />
|
||||||
<title>{$page.error?.message} • Revival Archive</title>
|
<title>{$page.error?.message} • Revival Archive</title>
|
||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
<div class="flex flex-col justify-center items-center h-72vh">
|
<div class="flex flex-col justify-center items-center">
|
||||||
<div class="bg-a p-8 px-22 rounded-4 text-center">
|
<div class="bg-a p-8 px-22 rounded-4 text-center mt-30vh">
|
||||||
<h1 class="m-0 mb-5 text-2.2rem">Error {$page.status}</h1>
|
<h1 class="m-0 mb-5 text-2.2rem">Error {$page.status}</h1>
|
||||||
{$page.error?.message}
|
{$page.error?.message}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
<svelte:head>
|
<svelte:head>
|
||||||
|
<meta name="description" content="Blog posts and reviews about revivals" />
|
||||||
<title>Revival Archive</title>
|
<title>Revival Archive</title>
|
||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
# Revival Archive
|
# Revival Archive
|
||||||
|
|
||||||
Visit [kit.svelte.dev](https://kit.svelte.dev)
|
Visit [kit.svelte.dev](https://kit.svelte.dev) to read the documentation
|
||||||
to read the documentation
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
# About
|
||||||
|
|
||||||
|
Revival Archive
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
<title>Blog • Revival Archive</title>
|
<title>Blog • Revival Archive</title>
|
||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
<h1>Posts</h1>
|
<h1>Blog Posts</h1>
|
||||||
|
|
||||||
{#each data.posts as post}
|
{#each data.posts as post}
|
||||||
<a href="/blog/{post.path}" class="txt text-white @light:text-dark
|
<a href="/blog/{post.path}" class="txt text-white @light:text-dark
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
const years: { [k: number]: string } = {
|
const years: { [k: number]: string } = {
|
||||||
2008: "bg-pink-700",
|
2008: "bg-fuchsia-500 text-black",
|
||||||
2009: "bg-rose-400 text-black",
|
2009: "bg-rose-400 text-black",
|
||||||
2010: "bg-red-600",
|
2010: "bg-red-600",
|
||||||
2011: "bg-orange-500 text-black",
|
2011: "bg-orange-500 text-black",
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
const revivals = [
|
const revivals = [
|
||||||
{
|
{
|
||||||
name: "Mercury",
|
name: "Mercury",
|
||||||
years: [2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020],
|
years: [2013],
|
||||||
rating: 5,
|
rating: 5,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -70,6 +70,9 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<svelte:head>
|
<svelte:head>
|
||||||
|
<meta
|
||||||
|
name="description"
|
||||||
|
content="An index of many of the currently playable revivals." />
|
||||||
<title>Revival Index • Revival Archive</title>
|
<title>Revival Index • Revival Archive</title>
|
||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
|
|
@ -92,8 +95,8 @@
|
||||||
</span>
|
</span>
|
||||||
{/each}
|
{/each}
|
||||||
</div>
|
</div>
|
||||||
<div class="my-20 text-center">
|
<div class="mt-5 mb-36">
|
||||||
<code>revival logo goes here</code>
|
This revival is one of the revivals ever! Play today!
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mt-a ms-a">
|
<div class="mt-a ms-a">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue