go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/server/portal/internal/assets/includes/base.html (about)

     1  {{define "base"}}
     2  <!DOCTYPE html>
     3  <html>
     4  <!-- Copyright 2015 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  <head><title>{{block "title" .}}Admin{{end}}</title></head>
     8  <style>{{includeCSS "third_party/bootstrap/bootstrap.min.css"}}</style>
     9  {{block "style" .}}{{end}}
    10  <body>
    11  <div class="container" style="margin-bottom: 20px;">
    12  {{template "content" .}}
    13  </div>
    14  </body>
    15  <script>{{includeJS "third_party/modal-vanilla/modal.min.js"}}</script>
    16  </html>
    17  {{end}}