58 lines
2.1 KiB
HTML
58 lines
2.1 KiB
HTML
{{define "navLinks"}}
|
|
{{end}}
|
|
{{define "navExtra"}}
|
|
<form class="row row-cols-lg-auto align-items-center" method="GET" action="{{ .urlNew }}">
|
|
<div class="col-12">
|
|
<input class="form-control mr-sm-2" type="text" placeholder="Title" aria-label="Title" name="title">
|
|
</div>
|
|
<div class="col-12">
|
|
<button class="btn btn-success my-2 my-sm-0" type="submit">New Note</button>
|
|
</div>
|
|
</form>
|
|
{{end}}
|
|
{{define "base"}}
|
|
<!doctype html>
|
|
<html lang='en'>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{template "title" .}}</title>
|
|
<link href="/static/css/bootstrap.min.css"
|
|
rel="stylesheet"
|
|
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
|
|
crossorigin="anonymous">
|
|
<link rel="icon" type="image/svg+xml"
|
|
href="/static/icons/favicon.svg">
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-expand-sm bg-body-tertiary mb-3">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="/">
|
|
<img src="/static/icons/favicon.svg" width="30" height="30" class="d-inline-block align-top" alt="">
|
|
GoNotes
|
|
</a>
|
|
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="/notes/">All Notes</a>
|
|
</li>
|
|
{{template "navLinks" .}}
|
|
<li>
|
|
<a class="nav-link" href="/logout/">Logout {{.user}}</a>
|
|
</li>
|
|
</ul>
|
|
{{template "navExtra" .}}
|
|
</div>
|
|
</nav>
|
|
<div class="container">
|
|
<div class="row justify-content-md-center">
|
|
<div class="col-md-6">
|
|
<h1>{{template "title" .}}</h1>
|
|
<main>
|
|
{{template "main" .}}
|
|
</main>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
{{end}}
|