yoake/webroot/includes/navbar.tpl.html

25 lines
1.1 KiB
HTML
Raw Normal View History

2022-11-11 16:15:22 -06:00
{{ $version := version }}
2022-11-20 12:05:14 -06:00
{{ $auth := (get_auth .C) }}
<nav class="navbar sticky-top flex-md-nowrap p-0">
2022-11-11 16:15:22 -06:00
<a class="navbar-brand col-md-3 col-lg-2 me-0 px-3 fs-6" href="#">
2022-11-20 12:05:14 -06:00
2022-11-11 16:15:22 -06:00
{{- (call .Config).WebRoot.SiteName -}}
2022-11-15 10:55:23 -06:00
<small class="fw-lighter text-muted px-2">{{ $version.Version }} - {{ $version.Date }}</small>
2022-11-11 16:15:22 -06:00
</a>
2022-11-07 04:45:02 -06:00
<button class="navbar-toggler position-absolute d-md-none collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#sidebar" aria-controls="sidebarMenu" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!--
<input class="form-control form-control-dark w-100 rounded-0 border-0" type="text" placeholder="Search"
aria-label="Search">
-->
2022-11-20 12:05:14 -06:00
<div class="navbar-nav">
<div class="nav-item text-nowrap px-3">
{{ if $auth.Valid }}
{{ if $auth.Ident.DisplayName }} {{ $auth.Ident.DisplayName }} {{ else }} {{ $auth.Ident.Username }} {{ end
}}
{{ end }}
</div>
</nav>