my website at https://anirudh.fi
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix subtitle meta

+4 -1
+1
templates/blog.html
··· 3 3 <head> 4 4 {{ template "head.html" }} 5 5 <link rel="alternate" type="application/rss+xml" title="RSS" href="https://icyphox.sh/blog/feed.xml"> 6 + <meta name="description" content="{{ index .Meta "title" }}"> 6 7 </head> 7 8 8 9 <title>
-1
templates/head.html
··· 1 1 <link rel="stylesheet" href="/static/style.css" type="text/css"> 2 - <meta name="description" content="{{ .Meta.Subtitle }}"> 3 2 <meta name="viewport" content="initial-scale=1,width"> 4 3 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> 5 4 <meta charset="UTF-8">
+1
templates/index.html
··· 1 1 <html lang=en> 2 2 <head> 3 3 {{ template "head.html" }} 4 + <meta name="description" content="{{ index .Meta "title" }}"> 4 5 </head> 5 6 <title> 6 7 {{ index .Meta "title" }}
+1
templates/page.html
··· 2 2 <html lang=en> 3 3 <head> 4 4 {{ template "head.html" }} 5 + <meta name="description" content="{{ index .Meta "title" }}"> 5 6 </head> 6 7 <title> 7 8 {{ index .Meta "title" }}
+1
templates/text.html
··· 1 1 <html lang=en> 2 2 <head> 3 3 {{ template "head.html" }} 4 + <meta name="description" content="{{ index .Meta "title" }}"> 4 5 </head> 5 6 <title> 6 7 {{ index .Meta "title" }}