mirror of
https://github.com/TeamPiped/hugo-whisper-theme.git
synced 2024-08-14 23:57:00 +00:00
Merge pull request #9 from damacus/make-logo-configurable
Make logo configurable
This commit is contained in:
commit
c679e0b497
2 changed files with 8 additions and 4 deletions
|
@ -34,4 +34,8 @@ pygmentsUseClasses = true
|
|||
meta_og_description = "Hugo Whisper is a documentation theme built with Hugo."
|
||||
meta_twitter_card = "summary"
|
||||
meta_twitter_site = "@zerostaticio"
|
||||
meta_twitter_creator = "@zerostaticio"
|
||||
meta_twitter_creator = "@zerostaticio"
|
||||
|
||||
[params.logo]
|
||||
mobile = "/images/logo-mobile.svg"
|
||||
standard = "/images/logo.svg"
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
<div class='header'>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="{{ .Site.BaseURL }}"><img alt="Logo" src="{{ "images/logo.svg" | absURL }}" /></a>
|
||||
<a href="{{ .Site.BaseURL }}"><img alt="Logo" src="{{ .Site.Params.logo.standard | relURL }}" /></a>
|
||||
</div>
|
||||
<div class="logo-mobile">
|
||||
<a href="{{ .Site.BaseURL }}"><img alt="Logo" src="{{ "images/logo-mobile.svg" | absURL }}" /></a>
|
||||
<a href="{{ .Site.BaseURL }}"><img alt="Logo" src="{{ .Site.Params.logo.mobile | relURL }}" /></a>
|
||||
</div>
|
||||
{{ partial "main-menu.html" . }}
|
||||
{{ partial "hamburger.html" . }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue