all repos — site @ 2dc4bba07b1efe126be2215c5756470ff83c3b14

source for my site, found at icyphox.sh

Fix subtitle meta
Anirudh Oppiliappan x@icyphox.sh
Tue, 21 Sep 2021 16:13:04 +0530
commit

2dc4bba07b1efe126be2215c5756470ff83c3b14

parent

86300ce706d303134d333477f787cb48d826bf4e

M templates/blog.htmltemplates/blog.html

@@ -3,6 +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" }}"> </head> <title>
M templates/head.htmltemplates/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.htmltemplates/index.html

@@ -1,6 +1,7 @@

<html lang=en> <head> {{ template "head.html" }} + <meta name="description" content="{{ index .Meta "title" }}"> </head> <title> {{ index .Meta "title" }}
M templates/page.htmltemplates/page.html

@@ -2,6 +2,7 @@ <!DOCTYPE html>

<html lang=en> <head> {{ template "head.html" }} + <meta name="description" content="{{ index .Meta "title" }}"> </head> <title> {{ index .Meta "title" }}
M templates/text.htmltemplates/text.html

@@ -1,6 +1,7 @@

<html lang=en> <head> {{ template "head.html" }} + <meta name="description" content="{{ index .Meta "title" }}"> </head> <title> {{ index .Meta "title" }}