mirror of
https://github.com/gesquive/slate.git
synced 2024-12-12 08:50:40 +01:00
add favicon site variable
This commit is contained in:
parent
865c770ac5
commit
d69d1b6cec
@ -46,6 +46,8 @@ BackgroundImages = [
|
||||
BackgroundStyle = "background: #000000;"
|
||||
# optional bool to have links open in a new window/tab (default: true)
|
||||
OpenLinksInNewWindow = true
|
||||
# optional path to favicon
|
||||
Favicon = "favicon.ico"
|
||||
|
||||
# list of nav tags
|
||||
[[ params.nav ]]
|
||||
|
@ -1,6 +1,7 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>{{ .Title }}</title>
|
||||
<title>{{ .Title }}</title>{{ if .Site.Params.Favicon }}
|
||||
<link rel="shortcut icon" href="{{ .Site.Params.Favicon }}">{{ end }}
|
||||
<link rel="stylesheet" href="css/slate.css">
|
||||
</head>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user