mirror of
https://github.com/davegallant/davegallant.github.io.git
synced 2025-08-06 08:43:40 +00:00
35 lines
990 B
HTML
35 lines
990 B
HTML
<div class="logo-wrapper">
|
|
<a href="{{ "/" | relLangURL }}" class="logo">
|
|
{{- if .Site.Params.logoTitle -}}
|
|
{{ .Site.Params.logoTitle }}
|
|
{{- else -}}
|
|
{{ .Site.Title }}
|
|
{{- end -}}
|
|
</a>
|
|
</div>
|
|
|
|
<nav class="site-navbar">
|
|
<ul id="menu" class="menu">
|
|
{{ $currentPage := . }}
|
|
{{ $menus := .Site.Params.icons }}
|
|
{{ range .Site.Menus.main -}}
|
|
<li class="menu-item {{ if $currentPage.IsMenuCurrent "main" . }}active{{ end }}">
|
|
<a class="menu-item-link" href="{{ .URL | safeURL }}">
|
|
{{ $id := .Identifier }}
|
|
{{- range $menus -}}
|
|
{{- if eq $id .id -}}
|
|
<i class="fa fa-fw fa-{{.icon}}"></i>
|
|
{{- end -}}
|
|
{{- end }}
|
|
{{ .Name }}
|
|
</a>
|
|
</li>
|
|
{{- end }}
|
|
<!-- <li class="menu-item">
|
|
<a class="menu-item-link" href="javascript:void(0);" id="search">
|
|
<i class="fa fa-fw fa-search"></i>
|
|
搜索
|
|
</a>
|
|
</li> -->
|
|
</ul>
|
|
</nav> |