swh:1:snp:9f90daa2f0cb7e83b3230a52ab396e3b6448c798
Tip revision: 17d7a0d31873783398506bc500cfa009e98d1a23 authored by LuisGC on 24 November 2018, 20:23:48 UTC
testing new image and build command
testing new image and build command
Tip revision: 17d7a0d
favicon.html
{{ if .Site.Params.loadFavicon }}
{{ with .Site.Params.faviconVersion }}
{{ $.Scratch.Set "favVer" "-" }}
{{ $.Scratch.Add "favVer" . }}
{{ else }}
{{ $.Scratch.Set "favVer" "" }}
{{ end }}
{{ $favVer := $.Scratch.Get "favVer" }}
<link rel="apple-touch-icon-precomposed" href='{{ "favicon/apple-touch-icon-precomposed" | relURL }}{{ $favVer }}.png'>
<link rel="icon" href='{{ "favicon/favicon" | relURL }}{{ $favVer }}.png'>
<!--[if IE]><link rel="shortcut icon" href='/favicon{{ $favVer }}.ico'><![endif]-->
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-TileImage" content='{{ "favicon/mstile" | relURL }}{{ $favVer }}.png'>
<meta name="application-name" content="{{ .Site.Title }}">
<meta name="msapplication-tooltip" content="{{ .Site.Params.Description }}">
<meta name="msapplication-config" content='{{ "favicon/ieconfig.xml" | relURL }}'>
{{ end }}