Fix subtitle meta
Anirudh Oppiliappan x@icyphox.sh
Tue, 21 Sep 2021 16:15:16 +0530
3 files changed,
2 insertions(+),
1 deletions(-)
M
templates/head.html
→
templates/head.html
@@ -1,5 +1,4 @@
<link rel="stylesheet" href="/static/style.css" type="text/css"> -<meta name="description" content="{{ .Meta.Subtitle }}"> <meta name="viewport" content="initial-scale=1,width"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta charset="UTF-8">
M
templates/index.html
→
templates/index.html
@@ -2,6 +2,7 @@ <!DOCTYPE html>
<html lang=en> <head> {{ template "head.html" }} + <meta name="description" content="{{ index .Meta "subtitle" }}"> </head> <title> {{ index .Meta "title" }}
M
templates/page.html
→
templates/page.html
@@ -2,6 +2,7 @@ <!DOCTYPE html>
<html lang=en> <head> {{ template "head.html" }} + <meta name="description" content="{{ index .Meta "subtitle" }}"> </head> <title> {{ index .Meta "title" }}