added option to position the logo at the right of the title
This commit is contained in:
parent
210793da66
commit
eaa947df25
|
@ -57,6 +57,8 @@ summaryLength = 70 # number of words for article summaries
|
|||
svgicon = "/logo.svg"
|
||||
icon512 = "/icon512.png" # 512x512 png image
|
||||
|
||||
logoRightOfTitle = false # positions the logo to the right of the title; default: false
|
||||
|
||||
showTags = true # show the Tags menu item; default true
|
||||
showRss = true # show the link for the RSS feed; default true
|
||||
|
||||
|
|
|
@ -586,6 +586,15 @@ ul.list {
|
|||
font-weight: normal;
|
||||
font-size: 1.6 * $base_font_size * $title_font_mult;
|
||||
margin: 0;
|
||||
{{ if site.Params.logoRightOfTitle }}
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
> a {
|
||||
margin-right: 12px;
|
||||
}
|
||||
{{ end }}
|
||||
}
|
||||
|
||||
img {
|
||||
|
|
|
@ -2,13 +2,18 @@
|
|||
{{- partial "inject/header-before.html" . -}}
|
||||
<div class="titleAndSearchContainer">
|
||||
<div id="titleContainer">
|
||||
{{ if not (.Site.Params.logoRightOfTitle | default false) }}
|
||||
<a class="unstyledLink" href="/">
|
||||
<img src='{{ .Site.Params.Logo | default "/logo.svg" }}' />
|
||||
</a>
|
||||
{{ end }}
|
||||
<div class="rightOfLogo">
|
||||
<div class="titleAndHamburger">
|
||||
<h1>
|
||||
<a class="unstyledLink" href="/">{{ .Site.Title | default "Ficurinia" }}</a>
|
||||
{{ if .Site.Params.logoRightOfTitle | default false }}
|
||||
<img src='{{ .Site.Params.Logo | default "/logo.svg" }}' />
|
||||
{{ end }}
|
||||
</h1>
|
||||
{{ if (.Site.Params.mobileHamburgerNav | default false) }}
|
||||
<label id="hamburger-menu" for="main-nav-toggler">
|
||||
|
|
Loading…
Reference in New Issue