diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-02-15 09:15:56 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-02-15 09:15:56 +0100 |
commit | 87c34df2616c8fa4a86fb7f1caecf450d27ec230 (patch) | |
tree | 0602cea41cf4565fb8a92b640a925a94d49d6e0c /templates/index.html | |
parent | e4970090667fe9a1860bd39fa46c1d326a24de3a (diff) | |
download | blog-87c34df2616c8fa4a86fb7f1caecf450d27ec230.tar.gz blog-87c34df2616c8fa4a86fb7f1caecf450d27ec230.zip |
index: add author,desc,kw meta tags
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/index.html b/templates/index.html index 3402996..297fb10 100644 --- a/templates/index.html +++ b/templates/index.html @@ -3,6 +3,9 @@ <head> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="content-type" content="text/html; charset=utf-8"> + <meta name="description" content="blog of johannes stoelp (stölp)"> + <meta name="keywords" content="blog, stölp"> + <meta name="author" content="johannes stoelp"> <!-- Enable responsiveness on mobile devices --> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1"> @@ -14,7 +17,7 @@ <body> {% if config.extra.header_links %} <header> - <div>[root@memzero] # ls</div> + <div>[root@memzero]# ls</div> <nav itemscope itemtype="http://schema.org/SiteNavigationElement"> {% for link in config.extra.header_links %} <a itemprop="url" href="{{ link.url | safe | replace(from="$BASE_URL", to=config.base_url) }}"><span itemprop="name">{{ link.name }}</span></a> |