Skeleton: Add page titles
All checks were successful
Build Formula11 Docker Image / pocketbase-docker (push) Successful in 26s
All checks were successful
Build Formula11 Docker Image / pocketbase-docker (push) Successful in 26s
This commit is contained in:
@ -81,6 +81,10 @@
|
||||
]);
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Formula 11 - Race Results</title>
|
||||
</svelte:head>
|
||||
|
||||
<div class="pb-2">
|
||||
<Button width="w-full" color="tertiary" onclick={result_handler} shadow>
|
||||
<span class="font-bold">Create Race Result</span>
|
||||
|
@ -51,6 +51,10 @@
|
||||
]);
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Formula 11 - Drivers</title>
|
||||
</svelte:head>
|
||||
|
||||
<div class="pb-2">
|
||||
<Button width="w-full" color="tertiary" onclick={driver_handler} shadow>
|
||||
<span class="font-bold">Create New Driver</span>
|
||||
|
@ -57,6 +57,10 @@
|
||||
]);
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Formula 11 - Races</title>
|
||||
</svelte:head>
|
||||
|
||||
<div class="pb-2">
|
||||
<Button width="w-full" color="tertiary" onclick={race_handler} shadow>
|
||||
<span class="font-bold">Create New Race</span>
|
||||
|
@ -59,6 +59,10 @@
|
||||
]);
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Formula 11 - Substitutions</title>
|
||||
</svelte:head>
|
||||
|
||||
<div class="pb-2">
|
||||
<Button width="w-full" color="tertiary" onclick={substitution_handler} shadow>
|
||||
<span class="font-bold">Create New Substitution</span>
|
||||
|
@ -42,6 +42,10 @@
|
||||
]);
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Formula 11 - Teams</title>
|
||||
</svelte:head>
|
||||
|
||||
<div class="pb-2">
|
||||
<Button width="w-full" color="tertiary" onclick={team_handler} shadow>
|
||||
<span class="font-bold">Create New Team</span>
|
||||
|
@ -38,4 +38,8 @@
|
||||
};
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Formula 11 - Users</title>
|
||||
</svelte:head>
|
||||
|
||||
<Table data={data.users} columns={users_columns} handler={users_handler} />
|
||||
|
@ -1 +1,3 @@
|
||||
<h1>Leaderboard</h1>
|
||||
<svelte:head>
|
||||
<title>Formula 11 - Leaderboard</title>
|
||||
</svelte:head>
|
||||
|
@ -74,6 +74,10 @@
|
||||
};
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Formula 11 - Race Picks</title>
|
||||
</svelte:head>
|
||||
|
||||
{#if data.currentrace}
|
||||
<Accordion class="card mx-auto bg-surface-500 shadow" regionPanel="pt-0" width="w-full">
|
||||
<AccordionItem>
|
||||
|
@ -2,6 +2,10 @@
|
||||
import { Card } from "$lib/components";
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Formula 11 - Rules</title>
|
||||
</svelte:head>
|
||||
|
||||
<div class="grid grid-cols-1 gap-2 xl:grid-cols-4">
|
||||
<Card>
|
||||
<h1 class="text-lg font-bold">Format</h1>
|
||||
|
@ -1 +1,3 @@
|
||||
<h1>Season Picks</h1>
|
||||
<svelte:head>
|
||||
<title>Formula 11 - Season Picks</title>
|
||||
</svelte:head>
|
||||
|
@ -1 +1,3 @@
|
||||
<h1>Statistics</h1>
|
||||
<svelte:head>
|
||||
<title>Formula 11 - Statistics</title>
|
||||
</svelte:head>
|
||||
|
Reference in New Issue
Block a user