Remove some unnecessary spacing

This commit is contained in:
Joe Hutchinson
2019-01-23 11:51:55 -05:00
parent 2f361dcf2a
commit 07f883afcc
4 changed files with 21 additions and 23 deletions

View File

@@ -4,14 +4,12 @@
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>{{ if not .IsHome }}{{ .Title }} &middot; {{ end }}{{ .Site.Title }}</title>
<meta name="description" content="{{if .IsHome}}{{ $.Site.Params.description }}{{else}}{{.Description}}{{end}}" />
<!-- Standard favicon -->
{{ if (fileExists "static/img/favicon.ico") -}}
<link rel="icon" type="image/x-icon" href="{{ "img/favicon.ico" | absURL}}">
{{- end }}
<!-- Recommended favicon format -->
<link rel="icon" type="image/x-icon" href="{{ "img/favicon.ico" | absURL}}">
{{ end -}}
{{ if (fileExists "static/img/favicon.png") -}}
<link rel="icon" type="image/png" href="{{ "img/favicon.png" | absURL}}">
{{- end }}
<link rel="icon" type="image/png" href="{{ "img/favicon.png" | absURL}}">
{{ end -}}
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.10.0/dist/katex.min.css" integrity="sha384-9eLZqc9ds8eNjO3TmqPeYcDj8n+Qfa4nuSiGYa6DjLNcv9BtN69ZIulL9+8CqC9Y" crossorigin="anonymous">
<link rel="stylesheet" href="{{ "css/main.min.css" | absURL}}" />
@@ -19,11 +17,11 @@
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
{{ end -}}
{{ template "_internal/google_analytics.html" . }}
{{ if isset $.Site.Params "bgimg" }}
{{ if isset $.Site.Params "bgimg" -}}
<style>
body {
background: #ecedef url("{{ $.Site.Params.bgimg | absURL | safeCSS }}") repeat;
}
</style>
{{ end }}
{{- end }}
</head>