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

header.html « partials « layouts - github.com/Y4er/hugo-theme-easybook.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f46fb0a34df5d022c0f797a33d991dc6a7ae7b7e (plain)
1
2
3
4
5
6
7
8
9
10
11
<div class="wrapper">
    <div id="sidebar-toggle">TOC</div>
    {{/*  首页左上角作者名  */}}
    <a class="site-title" href="{{ "." | absURL }}">{{ .Site.Params.author }}</a>
    {{/*  右上角导航  */}}
    <nav class="site-nav">
        {{ range .Site.Menus.main -}}
        <a class="page-link" href="{{ .URL | safeURL }}">{{ .Name }}</a>
        {{- end }}
    </nav>
</div>