1
0
Derivar 0

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.
master v0.1.5
Kevin C. Coram 2020-11-28 11:11:08 -05:00
ascendente 8c5110ddda
cometimento 950041aea9
Assinados por: kevin
ID da chave GPG: 0E64ECB9EDE572A3
1 ficheiros modificados com 13 adições e 1 eliminações

Ver ficheiro

@ -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>