hugo

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 8b6c73609c36e95ca9596e898c499d04a8ae66b5
parent 39ef824c2ffa5bbe1cc57c5964e13f546231e754
Author: Luke Smith <Luke Smith>
Date:   Thu, 23 Jun 2022 19:59:13 -0400

header changes

Diffstat:
Mlayouts/partials/header.html | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/layouts/partials/header.html b/layouts/partials/header.html @@ -1,13 +1,15 @@ <!DOCTYPE html> <html lang="{{ .Site.Language }}"> <head> - <title>{{ if not .IsHome }}{{ .Title | title }} | {{ end }}{{ .Site.Title }}</title> + <title>{{ if not .IsHome }}{{ .Title | title }} | {{ end }}{{ .Site.Title }}</title> <meta charset="utf-8"/> - <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" /> + <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> <link rel='stylesheet' type='text/css' href='/style.css'> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="keywords" content="{{ with .Params.tags }}{{ delimit . ", " }}{{ end }}"> <link rel='alternate' type='application/rss+xml' title="{{ .Site.Title }} RSS" href='/rss.xml'> + <link rel="canonical" href="{{ .Site.BaseURL }}"> + <meta name="description" content="{{ with .Params.description }}{{ . }}{{ else }}{{ .Summary }}{{ end }}"> </head> <body> {{ partial "nav.html" . }}