added privacy policy
This commit is contained in:
parent
c8698d8c80
commit
26cd9f0bea
16 changed files with 285 additions and 112 deletions
|
@ -1,19 +1,33 @@
|
|||
{{ $currentPage := . }}
|
||||
|
||||
<nav>
|
||||
<div class="container">
|
||||
<section class="website-name">
|
||||
<a href="{{ .Site.BaseURL }}">{{ .Site.Params.menuname }}</a>
|
||||
{{ range .Site.Menus.name }}
|
||||
{{ if $currentPage.IsMenuCurrent "name" . }}
|
||||
<a href="{{ .URL }}" class="active">{{ .Name }}</a>
|
||||
{{ else }}
|
||||
<a href="{{ .URL }}">{{ .Name }}</a>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</section>
|
||||
<span class="seperator">/</span>
|
||||
<section class="website-mainmenu">
|
||||
<ul>
|
||||
{{ $currentPage := . }}
|
||||
{{ range .Site.Menus.main }}
|
||||
<li>
|
||||
<a href="{{ .URL }}">
|
||||
{{ .Pre }}
|
||||
<span>{{ .Name }}</span>
|
||||
</a>
|
||||
</li>
|
||||
{{ if $currentPage.IsMenuCurrent "main" . }}
|
||||
<li class="active">
|
||||
<a href="{{ .URL }}">
|
||||
<span>{{ .Name }}</span>
|
||||
</a>
|
||||
</li>
|
||||
{{ else }}
|
||||
<li>
|
||||
<a href="{{ .URL }}">
|
||||
<span>{{ .Name }}</span>
|
||||
</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</ul>
|
||||
</section>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue