-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from coreruleset/update-search-link
fix: search feature url
- Loading branch information
Showing
1 changed file
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
{{ $extra_header_class := "" }} | ||
{{ with .Site.Params.sticky_header }} | ||
{{ $extra_header_class = "sticky" }} | ||
{{ end }} | ||
<header class="header {{ $extra_header_class }}"> | ||
<div class="container wrap"> | ||
|
||
{{ with .Site.Params.logo_on_white }} | ||
<a class="logo-link" href="{{ "/" | absLangURL }}"> | ||
<img class="logo" width="150" height="40" src="{{ . | absURL }}" alt="{{ $.Site.Title }}"> | ||
</a> | ||
{{ else }} | ||
<a class="site-title-link" href="{{ "/" | absLangURL }}"> | ||
<span class="site-title">{{ $.Site.Title }}</span> | ||
</a> | ||
{{ end }} | ||
|
||
{{ with .Site.Menus.main }} | ||
<nav class="main-menu"> | ||
<ul class="main-menu__wrapper"> | ||
{{ range . }} | ||
<li class="top-menu-item{{ if .HasChildren }} menu-item-has-children{{ end }}"> | ||
<a href="{{ if .HasChildren }}#{{ else }}{{ .URL | relLangURL }}{{ end }}" class="menu-link">{{ | ||
.Name }}</a> | ||
{{ if .HasChildren }} | ||
<div class="sub-menu"> | ||
<ul class="sub-menu__nav"> | ||
{{ range .Children }} | ||
<li class="menu-item"> | ||
<a href="{{ .URL | relLangURL }}" class="menu-link">{{ .Name }} | ||
{{ if .Post }} | ||
<span class="menu-item__description">{{ .Post }}</span> | ||
{{ end }} | ||
</a> | ||
</li> | ||
{{ end }} | ||
</ul> | ||
</div> | ||
{{ end }} | ||
</li> | ||
{{ end }} | ||
</ul> | ||
|
||
<div class="main-menu__cta-language-wrapper"> | ||
{{ with $.Site.Params.main_cta }} | ||
{{ if and .text .link }} | ||
<a href="{{ .link | absLangURL }}" class="button main-menu-cta">{{ .text }}</a> | ||
{{ end }} | ||
{{ end }} | ||
|
||
{{ with $.Site.Params.show_search }} | ||
<div class="main-menu__search-language-wrapper"> | ||
|
||
<a href="{{ "search" | absLangURL }}" class="main-menu-search"> | ||
<svg width="30" height="31" viewBox="0 0 50 52" fill="none" xmlns="http://www.w3.org/2000/svg"><path opacity=".945" fill-rule="evenodd" clip-rule="evenodd" d="M45.381 50.122 28.404 33.357l3.1-3.14 16.978 16.765-3.1 3.14Z" fill="#000"/><path opacity=".945" fill-rule="evenodd" clip-rule="evenodd" d="M19.372 6.63c-7.63 0-13.77 6.102-13.77 13.57 0 7.469 6.14 13.57 13.77 13.57 7.631 0 13.77-6.102 13.77-13.57S27.003 6.63 19.372 6.63ZM1.19 20.2c0-9.957 8.167-17.982 18.182-17.982 10.016 0 18.182 8.025 18.182 17.982 0 9.958-8.166 17.983-18.182 17.983C9.357 38.183 1.19 30.158 1.19 20.2Z" fill="#000"/></svg> | ||
</a> | ||
{{ end }} | ||
|
||
{{ partial "language-selector.html" $ }} | ||
|
||
{{ if $.Site.Params.show_search }} | ||
</div> | ||
{{ end }} | ||
</div> | ||
|
||
</nav> | ||
<button class="hamburger" type="button" aria-label="Toggle Menu"> | ||
<span class="hamburger-box"> | ||
<span class="hamburger-inner"></span> | ||
</span> | ||
</button> | ||
{{ else }} | ||
<p>Create pages or add <pre>.Site.Menus.main</pre> to config to activate menu.</p> | ||
{{ end }} | ||
</div> | ||
</header> |