spotdlweb/views/layout.pug
Expand-sys 05e7d22776 aaa
2023-09-29 22:24:33 +10:00

33 lines
No EOL
1.2 KiB
Text

doctype html
html
head
title CCashBank
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
link(rel="preconnect" href="https://fonts.gstatic.com")
link(href="https://fonts.googleapis.com/css2?family=Lato&family=Montserrat&display=swap" rel="stylesheet")
body
nav.navbar.navbar-expand-lg.navbar-dark.shadow-lg
.container
.logo
.row
.col
a.navbar-brand(href='/')
img(src="/logo.png" style="width:64px; height:64px")
.col
div.nav-item(style="padding:5px;")
h1 SPOTDLWEB
.container
.container(style="min-height: 3vh")
if errors
div(class="alert alert-danger") #{errors}
if successes
div(class="alert alert-success") #{successes}
br
br
block content
br
hr