Fix subtitle meta, again
Anirudh Oppiliappan x@icyphox.sh
Tue, 21 Sep 2021 16:29:34 +0530
4 files changed,
4 insertions(+),
4 deletions(-)
M
templates/blog.html
→
templates/blog.html
@@ -3,7 +3,7 @@ <html lang=en>
<head> {{ template "head.html" }} <link rel="alternate" type="application/rss+xml" title="RSS" href="https://icyphox.sh/blog/feed.xml"> - <meta name="description" content="{{ index .Meta "title" }}"> + <meta name="description" content="{{ index .Meta "subtitle" }}"> </head> <title>
M
templates/index.html
→
templates/index.html
@@ -1,7 +1,7 @@
<html lang=en> <head> {{ template "head.html" }} - <meta name="description" content="{{ index .Meta "title" }}"> + <meta name="description" content="{{ index .Meta "subtitle" }}"> </head> <title> {{ index .Meta "title" }}
M
templates/page.html
→
templates/page.html
@@ -2,7 +2,7 @@ <!DOCTYPE html>
<html lang=en> <head> {{ template "head.html" }} - <meta name="description" content="{{ index .Meta "title" }}"> + <meta name="description" content="{{ index .Meta "subtitle" }}"> </head> <title> {{ index .Meta "title" }}
M
templates/text.html
→
templates/text.html
@@ -1,7 +1,7 @@
<html lang=en> <head> {{ template "head.html" }} - <meta name="description" content="{{ index .Meta "title" }}"> + <meta name="description" content="{{ index .Meta "subtitle" }}"> </head> <title> {{ index .Meta "title" }}