Skip to content

Commit

Permalink
added page titles
Browse files Browse the repository at this point in the history
  • Loading branch information
Le0X8 committed Aug 14, 2024
1 parent 90e6cfb commit 2642865
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
</script>

<svelte:head>
<title>Acridotheres for Developers</title>
<title>Home | Acridotheres for Developers</title>
</svelte:head>

<header class="bg-black fixed top-0 left-0 w-full h-12 text-white">
Expand Down
4 changes: 4 additions & 0 deletions src/routes/cli/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
}[] };
</script>

<svelte:head>
<title>List of CLI documentation pages | Acridotheres for Developers</title>
</svelte:head>

<h1>List of CLI documentation pages</h1>

<ul>
Expand Down
2 changes: 1 addition & 1 deletion src/routes/cli/[page]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<a href="https://github.com/acridotheres/developers/blob/main/src/pages/cli/{data.path}.md?plain=1" class="block w-full text-right mt-6" target="_blank">view this page on GitHub</a>

<h1 class="mt-0">{data.metadata.title}</h1>
<h1 class="mt-0">{data.metadata.title} | Acridotheres for Developers</h1>

<svelte:component this={data.content} />

Expand Down
4 changes: 4 additions & 0 deletions src/routes/formats/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
}[] };
</script>

<svelte:head>
<title>List of documented formats | Acridotheres for Developers</title>
</svelte:head>

<h1>List of documented formats</h1>

{#each data.pages as page}
Expand Down

0 comments on commit 2642865

Please sign in to comment.