diff options
author | Dmitry Ilvokhin <d@ilvokhin.com> | 2023-12-20 12:47:27 +0000 |
---|---|---|
committer | Dmitry Ilvokhin <d@ilvokhin.com> | 2023-12-20 12:47:27 +0000 |
commit | a2fc2672206eb00c9df6afae26f7ba2e048c3830 (patch) | |
tree | 0d79b6c88573c56f5e1b893a4d0942f5aa7e6e78 /templates | |
parent | d54216b239f7b02fcd74b64c90d891998e62d671 (diff) | |
download | blog-a2fc2672206eb00c9df6afae26f7ba2e048c3830.tar.gz blog-a2fc2672206eb00c9df6afae26f7ba2e048c3830.tar.bz2 blog-a2fc2672206eb00c9df6afae26f7ba2e048c3830.zip |
Add author metadata tag to feed and posts
Diffstat (limited to 'templates')
-rw-r--r-- | templates/feed.html | 1 | ||||
-rw-r--r-- | templates/post.html | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/templates/feed.html b/templates/feed.html index 7d5a325..deb89c5 100644 --- a/templates/feed.html +++ b/templates/feed.html @@ -6,6 +6,7 @@ <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="title" content="blog.ilvokhin.com"> + <meta name="author" content="Dmitry Ilvokhin"> <title>blog.ilvokhin.com</title> <link rel="stylesheet" type="text/css" href="/style.css"/> diff --git a/templates/post.html b/templates/post.html index 56bdef8..20c3ac2 100644 --- a/templates/post.html +++ b/templates/post.html @@ -6,6 +6,7 @@ <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="title" content="{{ title }}"> + <meta name="author" content="{{ author }}"> <title>{{ title }} | blog.ilvokhin.com</title> <link rel="stylesheet" type="text/css" href="/style.css" /> |