mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-10 08:57:25 +01:00
22 lines
584 B
Cheetah
22 lines
584 B
Cheetah
{{define "navigation"}}
|
|
<header>
|
|
<nav class="navbar navbar-expand-lg navbar-light fixed-top bg-light">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="/">
|
|
<img style="height: 30px;" alt="ClusterCockpit Logo" src="/img/logo.png" class="d-inline-block align-top">
|
|
</a>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
{{end}}
|
|
|
|
{{define "content"}}
|
|
<div class="row">
|
|
<div class="col">
|
|
<div class="alert alert-info" role="alert">
|
|
{{.Info}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{end}}
|