Add possibility to set up your own logotype in config

This commit is contained in:
panr 2018-07-25 00:28:34 +02:00
parent a4a62f2eff
commit 1ca7b86e6c
4 changed files with 16 additions and 4 deletions

View File

@ -8,6 +8,10 @@ paginate = 5
[params]
subtitle = "A simple theme for Hugo"
# [params.logo]
# path = "/img/your-example-logo.svg"
# alt = "your_example_logo"
[menu]
[[menu.main]]
identifier = "about"

View File

@ -1,7 +1,11 @@
<a href="{{ .Site.BaseURL }}" style="text-decoration: none;">
<div class="logo">
<span class="logo__mark">></span>
<span class="logo__text">hello friend</span>
<span class="logo__cursor"></span>
{{ if .Site.Params.Logo }}
<img src="{{ .Site.Params.Logo.path }}" alt="{{ .Site.Params.Logo.alt }}" />
{{ else }}
<span class="logo__mark">></span>
<span class="logo__text">hello friend</span>
<span class="logo__cursor"></span>
{{ end }}
</div>
</a>

View File

@ -3,6 +3,10 @@
align-items: center;
text-decoration: none;
img {
height: 44px;
}
&__mark {
margin-right: 5px;
}

File diff suppressed because one or more lines are too long