oxil-net1
Version:
Oxford Information Labs Netistrar Theme
24 lines (18 loc) • 789 B
HTML
{{- $site := .site -}}
{{- $linkcss := .linkcss -}}
{{- $titlecss := .titlecss -}}
<div class="simple-menu {{with .css}}{{.}}{{end}}">
{{- with .menuTitle -}}
<h3 class="normal {{with $titlecss}}{{.}}{{end}}">{{ . }}</h3>
{{- end -}}
{{- $currentPage := .page -}}
{{- range .menu -}}
{{- if and (.URL) (eq .URL "DASHBOARD") -}}
<a href="{{$site.Params.dashboard_url}}" class="level1 {{with $linkcss}}{{.}}{{end}}">{{ T (.Name | urlize) }}</a>
{{- else if eq .Identifier "ORDERS" -}}
<a href="{{$site.Params.dashboard_url}}{{.URL}}" class="level1 {{with $linkcss}}{{.}}{{end}}">{{ T (.Name | urlize) }}</a>
{{- else -}}
<a href="{{ .URL | relLangURL }}" class="level1 {{with $linkcss}}{{.}}{{end}}"><span>{{ .Name }}</span></a>
{{- end -}}
{{- end -}}
</div>