rastrillo / idear Public

Clone
git clone https://amadan.net/rastrillo/idear

Plain git — no account needed to clone.

Download

Download this file

1{{define "layout"}}<!doctype html>
2<html lang="en">
3<head>
4<meta charset="utf-8">
5<meta name="viewport" content="width=device-width, initial-scale=1">
6<title>{{.Site}}</title>
7</head>
8<body>
9<header>
10<nav>
11<a href="/">{{.Site}}</a>
12{{if .Viewer}}
13| <a href="/members">Members</a>
14| <span>{{.Viewer.Email}} ({{.Viewer.Role.Title}})</span>
15| <form method="post" action="/signout"><button type="submit">Sign out</button></form>
16{{else if .SignedIn}}
17| <form method="post" action="/signout"><button type="submit">Sign out</button></form>
18{{else}}
19| <a href="/signin">Sign in</a>
20{{end}}
21</nav>
22</header>
23{{if .HasFlash}}<p data-flash="{{.Flash.Kind}}">{{.Flash.Message}}</p>{{end}}
24<main>
25{{template "content" .}}
26</main>
27</body>
28</html>
29{{end}}
30