diff options
author | Adam Stück <adam@adast.dk> | 2024-08-09 13:37:14 +0200 |
---|---|---|
committer | Adam Stück <adam@adast.dk> | 2024-08-09 13:37:14 +0200 |
commit | affedb63dc2544ab8422c1d81ebb7cbb769ad1c4 (patch) | |
tree | e5a797137101dbb9a8988eb573b4625168fc5ea6 | |
parent | 1197d030237a324ed08dc37775af359cdb53eb9d (diff) |
header: add rss/atom feed metadata
-rw-r--r-- | header.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/header.html b/header.html index d71451e..b687008 100644 --- a/header.html +++ b/header.html @@ -1,12 +1,13 @@ <!doctype html> -<html lang="en" id="top"> +<html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="color-scheme" content="dark light"> <link rel="icon" href="data:,"> <title>{{TITLE}}</title> - <link href="https://adast.dk/feed" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" /> + <link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" /> + <link href="/rss.xml" type="application/rss+xml" rel="alternate" title="RSS feed for blog posts" /> <style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}blockquote{border-left:4px solid;padding-left:5px;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}table{text-align:left;width:100%;} .posts,#menu{list-style:none;padding:0;}.posts li{margin-bottom:8px;}.posts li span{display:block;font-size:90%;}#menu li{display:inline-block;margin-right:8px;}.footnotes{font-size:90%;} |