diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-10T12·21+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-10T13·27+0000 |
commit | a37e10ced5af41c69ef61325b54146274a144f75 (patch) | |
tree | 8c759eef1c93e71644925ceba032def5c7d82237 /blog | |
parent | 118b7b96683bf18b58d88a1162eee36877c2f33b (diff) |
Lint hugo Tailwind theme
My Emacs automatically trims trailing whitespace when I save a buffer. As a result, this diff appears whenever I edit the baseof.html file. Instead of continuing to ignore the diff, I'm committing it.
Diffstat (limited to 'blog')
-rw-r--r-- | blog/themes/tailwind/layouts/_default/baseof.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/blog/themes/tailwind/layouts/_default/baseof.html b/blog/themes/tailwind/layouts/_default/baseof.html index 4edc3d9c63e4..92b35db3e005 100644 --- a/blog/themes/tailwind/layouts/_default/baseof.html +++ b/blog/themes/tailwind/layouts/_default/baseof.html @@ -7,7 +7,7 @@ <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> - + <!-- Twitter Card --> <meta name="twitter:card" content="summary"> <meta name="twitter:title" content="{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} - {{ .Site.Title }}{{ end }}"> @@ -15,7 +15,7 @@ <meta name="twitter:site" content="{{ .Site.BaseURL }}"> <meta name="twitter:creator" content="{{ .Params.Author }}"> <meta name="twitter:image" content="{{ .Site.Params.Avatar | absURL }}"> - + <!-- Open-Graph Data --> <meta property="og:locale" content="{{ .Site.Params.LanguageCode }}"> <meta property="og:type" content="{{ if .IsHome }}website{{ else }}article{{ end }}"> @@ -24,7 +24,7 @@ <meta property="og:url" content="{{ .Permalink }}"> <meta property="og:site_name" content="{{ .Site.Title }}"> <meta property="og:image" content="{{ .Site.Params.Avatar | absURL }}"> - + <title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} - {{ .Site.Title }}{{ end }}</title> <meta name="author" content="{{ .Site.Params.Author }}"> |