Skip to content
This repository has been archived by the owner on Oct 13, 2022. It is now read-only.

Pwa audit/add meta description to routes #158

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/routes/about.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<svelte:head>
<title>About</title>
<meta name="Description" content="Sapper project template about page">
</svelte:head>

<h1>About this site</h1>
Expand Down
1 change: 1 addition & 0 deletions src/routes/blog/[slug].svelte
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@

<svelte:head>
<title>{post.title}</title>
<meta name="Description" content="Sapper project template {post.title} post">
</svelte:head>

<h1>{post.title}</h1>
Expand Down
1 change: 1 addition & 0 deletions src/routes/blog/index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

<svelte:head>
<title>Blog</title>
<meta name="Description" content="Sapper project template blog posts">
</svelte:head>

<h1>Recent posts</h1>
Expand Down
1 change: 1 addition & 0 deletions src/routes/index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@

<svelte:head>
<title>Sapper project template</title>
<meta name="Description" content="Sapper project template">
</svelte:head>

<h1>Great success!</h1>
Expand Down