Copying layouts from old theme to new
This commit is contained in:
26
layouts/partials/header.html
Normal file
26
layouts/partials/header.html
Normal file
@@ -0,0 +1,26 @@
|
||||
{{ $current := . }}
|
||||
<nav class="navbar navbar-expand-md navbar-light bg-light fixed-top" id="navbar-main-menu">
|
||||
<div class="container">
|
||||
|
||||
<a class="navbar-brand" href="{{ .Site.BaseURL }}"><img src="/images/DUCK_256.png" width="30" height="30" class="mr-3 rotate-a-20"/>{{ .Site.Title }}</a>
|
||||
<!-- <a class="navbar-brand font-weight-bold" href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a> -->
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#main-menu" aria-controls="main-menu" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="main-menu">
|
||||
<ul class="navbar-nav ml-auto">
|
||||
{{- if .Site.Params.showLanguageSwitcher -}}
|
||||
{{ partial "i18nlist.html" . }}
|
||||
{{- end -}}
|
||||
{{ with .Site.Menus.main }}
|
||||
{{ range . }}
|
||||
<li class="nav-item{{ if $current.IsMenuCurrent "main" . }} active{{ end }}"><a class="nav-link" href="{{ .URL | relLangURL }}">{{ .Name }}</a></li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
<li class="nav-item">
|
||||
<i class="fas fa-search" data-fa-transform="down-5"></i>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
Reference in New Issue
Block a user