Welcome to mirror list, hosted at ThFree Co, Russian Federation.

menu-links.html « partials « layouts - github.com/Xzya/hugo-material-blog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 03ff65fd19343195f6f655bbdfe189cd8b7d91e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ $name := .name }}
{{ with .menu }}
<h5 class="black-text">{{ $name }}</h5>
<ul>
    {{ range . }}
    <li>
        <a class="grey-text text-darken-4" href="{{ .URL | relLangURL }}">{{ .Name }}</a>
    </li>
    {{ end }}
</ul>
{{ end }}