Hugo go go go
Made a hugo setup from scratch to generate a static blog and portfolio webpage. The old stuff may still be found in static/old.
This commit is contained in:
34
layouts/partials/nav.html
Normal file
34
layouts/partials/nav.html
Normal file
@@ -0,0 +1,34 @@
|
||||
<nav id="navbar">
|
||||
<ul class="top-nav">
|
||||
<li class=""><a href="/">{{ site.Title }}</a></li>
|
||||
{{ partial "i18n/nav.html" . }}
|
||||
<div class="link-group">
|
||||
{{ $currentPage := . }}
|
||||
{{ range .Site.Menus.main }}
|
||||
{{ if .HasChildren }}
|
||||
<li class='{{ if $currentPage.HasMenuCurrent "main" . }}active{{ end }}'>
|
||||
<a href='#'>{{ .Pre }}<span>{{ .Name }}</span></a>
|
||||
</li>
|
||||
<ul class='sub-menu'>
|
||||
{{ range .Children }}
|
||||
<li class='{{ if $currentPage.IsMenuCurrent "main" . }}active{{ end }}'>
|
||||
<a href='{{ .URL }}'>{{ .Name }}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
{{ else }}
|
||||
<li>
|
||||
<a href='{{ .URL }}'>
|
||||
{{ .Pre }}
|
||||
<span>{{ .Name }}</span>
|
||||
</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
<!-- <li class="top-nav__link"><a href="#">
|
||||
<img class="icons" src="/search-icon.svg">
|
||||
</a>
|
||||
</li> -->
|
||||
</div>
|
||||
</ul>
|
||||
</nav>
|
Reference in New Issue
Block a user