go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/config_service/internal/ui/includes/base.html (about) 1 {{define "base"}} 2 <!DOCTYPE html> 3 <html lang="en"> 4 <!-- Copyright 2023 The LUCI Authors. All rights reserved. 5 Use of this source code is governed under the Apache License, Version 2.0 6 that can be found in the LICENSE file. --> 7 8 <head> 9 <meta http-equiv="Content-type" content="text/html; charset=UTF-8"> 10 <meta name="viewport" content="width=device-width, initial-scale=1"> 11 <title>{{block "title" .}}LUCI Config{{end}}</title> 12 <link href="/third_party/bootstrap/css/bootstrap.min.css" rel="stylesheet"> 13 <link rel="icon" type="image/png" href="/static/images/luci-chromium.png"> 14 <style> 15 body { 16 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 17 font-size: 14px; 18 } 19 20 a { 21 text-decoration: none !important; 22 } 23 </style> 24 {{block "head" .}}{{end}} 25 </head> 26 27 <body> 28 <div class="container"> 29 <nav class="navbar navbar-expand-md navbar-light bg-light rounded border mb-2"> 30 <div class="container-fluid"> 31 <a class="navbar-brand" href="/">LUCI Config</a> 32 <span class="navbar-text"> 33 {{if .IsAnonymous}} 34 <a href="{{.LoginURL}}">Login</a> 35 {{else}} 36 {{.User.Email}} | <a href="{{.LogoutURL}}">Logout</a> 37 {{end}} 38 </span> 39 </div> 40 </nav> 41 42 <div id="content-box"> 43 {{block "content" .}}{{end}} 44 </div> 45 46 <footer style="color: #cccccc;"> 47 <hr class="mt-1 mb-1"> 48 <p class="float-end small"> 49 Handled in {{call .HandlerDuration}} 50 <span class="ms-2">Image Version: {{.ImageVersion}}</span> 51 </p> 52 </footer> 53 </div> 54 <script src="/third_party/bootstrap/js/bootstrap.bundle.min.js"></script> 55 {{block "scripts" .}}{{end}} 56 </body> 57 </html> 58 {{end}}