Compare commits

...

1 Commits

Author SHA1 Message Date
Kevin C. Coram 950041aea9
Add support for favicons
See https://favicon.io/favicon-converter for generating a favicon and
the link references to add to the `head` of the HTML template.
2020-11-28 11:11:08 -05:00
1 changed files with 13 additions and 1 deletions

View File

@ -15,6 +15,18 @@
{{ block "icons" . }}
{{ partial "icons.html" . }}
{{ end }}
{{ if (fileExists "static/apple-touch-icon.png") -}}
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
{{- end }}
{{ if (fileExists "static/favicon-32x32.png") -}}
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
{{- end }}
{{ if (fileExists "static/favicon-16x16.png") -}}
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
{{- end }}
{{ if (fileExists "static/site.webmanifest") -}}
<link rel="manifest" href="/site.webmanifest">
{{- end }}
</head>
<body>
@ -65,4 +77,4 @@
</footer>
</body>
</html>
</html>