mirror of
https://github.com/trwnh/hugo-theme-paradox.git
synced 2024-11-14 15:31:21 +00:00
27 lines
869 B
HTML
27 lines
869 B
HTML
<header class="site-header">
|
|
<div class="container">
|
|
<div class='hang-left'>
|
|
<a href="/" class="site-masthead">
|
|
{{ with .Site.Params.masthead.image }}
|
|
<img class="site-masthead__image" height="32" src="{{.}}">
|
|
{{ end }}
|
|
{{ with resources.Get .Site.Params.masthead.svg }}
|
|
{{ .Content | safeHTML }}
|
|
{{ end }}
|
|
{{if .Site.Params.masthead.hideTitle}}
|
|
{{ else }}
|
|
<p class="site-title">{{or .Site.Params.masthead.title .Site.Title}}</p>
|
|
{{ end }}
|
|
</a>
|
|
{{ partial "color-switcher.html" . }}
|
|
</div>
|
|
{{ if in .Site.Params.search.showIn "header" }}
|
|
{{ partial "search/search-form.html" . }}
|
|
{{ end }}
|
|
{{ partial "nav-header.html" . }}
|
|
</div>
|
|
</header>
|
|
<div class="scroll-margin" style="position: relative;">
|
|
<div id="top" style="scroll-margin-top: var(--header-height);"></div>
|
|
</div>
|
|
{{ partial "nav-docs.html" . }} |