diff options
author | Gitea <gitea@fake.local> | 2021-03-13 14:34:54 -0600 |
---|---|---|
committer | Gitea <gitea@fake.local> | 2021-03-13 14:34:54 -0600 |
commit | d5f2c72acd877acbb3683b50cfbbe9f3c0d98af3 (patch) | |
tree | d7ef02c50f80e7346acdbfe2fefceb25f57e4671 /src/templates | |
parent | 8a0a3a00e75dc2351a7218d0059b87f7e9345871 (diff) |
Add meta description and sitemap
Diffstat (limited to 'src/templates')
-rw-r--r-- | src/templates/blog-single.html | 1 | ||||
-rw-r--r-- | src/templates/blog.html | 1 | ||||
-rw-r--r-- | src/templates/bread.html | 1 | ||||
-rw-r--r-- | src/templates/misc.html | 1 | ||||
-rw-r--r-- | src/templates/projects.html | 1 | ||||
-rw-r--r-- | src/templates/tags.html | 3 |
6 files changed, 7 insertions, 1 deletions
diff --git a/src/templates/blog-single.html b/src/templates/blog-single.html index 10012b6..3dd0520 100644 --- a/src/templates/blog-single.html +++ b/src/templates/blog-single.html @@ -4,6 +4,7 @@ <head> <title>Mark's Kitchen - Blog</title> <link rel="stylesheet" type="text/css" href="/css/styles.css"> + <meta name="description" content="A post from {{date}}"> {{> header}} </head> diff --git a/src/templates/blog.html b/src/templates/blog.html index 1c097c0..85c9d2e 100644 --- a/src/templates/blog.html +++ b/src/templates/blog.html @@ -4,6 +4,7 @@ <head> <title>Mark's Kitchen - Blog</title> <link rel="stylesheet" type="text/css" href="/css/styles.css"> + <meta name="description" content="Mark's blog feed"> {{> header}} </head> diff --git a/src/templates/bread.html b/src/templates/bread.html index 88a5528..9f1d4b6 100644 --- a/src/templates/bread.html +++ b/src/templates/bread.html @@ -2,6 +2,7 @@ <html lang="en"> <head> <title>Mark's Kitchen - Bread</title> + <meta name="description" content="Mark's bread feed"> {{> header}} <link rel="stylesheet" type="text/css" href="/css/styles.css"> </head> diff --git a/src/templates/misc.html b/src/templates/misc.html index 3f0aee8..96a7fcb 100644 --- a/src/templates/misc.html +++ b/src/templates/misc.html @@ -4,6 +4,7 @@ <head> <title>Mark's Kitchen</title> <link rel="stylesheet" type="text/css" href="/css/styles.css"> + <meta name="description" content="Miscellanious pages"> {{> header}} </head> diff --git a/src/templates/projects.html b/src/templates/projects.html index 0ca8efa..3554e4d 100644 --- a/src/templates/projects.html +++ b/src/templates/projects.html @@ -4,6 +4,7 @@ <head> <title>Mark's Kitchen - Projects</title> <link rel="stylesheet" type="text/css" href="/css/styles.css"> + <meta name="description" content="A list of Mark's projects"> {{> header}} </head> diff --git a/src/templates/tags.html b/src/templates/tags.html index 31858e8..9b87eba 100644 --- a/src/templates/tags.html +++ b/src/templates/tags.html @@ -7,6 +7,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <link rel="stylesheet" type="text/css" href="/css/styles.css"> <link rel="shortcut icon" href="/favicon.ico"> + <meta name="description" content="Posts sorted by {{name}}"> </head> <body> @@ -19,4 +20,4 @@ {{> footer}} </body> -</html>
\ No newline at end of file +</html> |