diff options
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/index.html | 2 | ||||
-rw-r--r-- | layouts/partials/head.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/layouts/index.html b/layouts/index.html index 93b18d8..4f74872 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,7 +1,7 @@ {{ partial "head" . }} <header> - <a href="/"><img id="logo" src="/img/giraffe.svg" /></a> + <a href="/"><img id="logo" src="{{ .Site.Params.logo }}" /></a> <h1>{{ .Title }}</h1> </header> <main> diff --git a/layouts/partials/head.html b/layouts/partials/head.html index a2149d0..6f1549e 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -20,6 +20,6 @@ <body> {{ if not .IsHome }} <header> - <a href="/"><img id="logofloat" src="/img/giraffe.svg" /></a> + <a href="/"><img id="logofloat" src="{{ .Site.Params.logo }}" /></a> </header> {{ end }} |