| 1 | {{define "base.html"}}<!DOCTYPE html> |
| 2 | <html lang="en"> |
| 3 | <head> |
| 4 | <meta charset="UTF-8"> |
| 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | <title>{{block "title" .}}blobs{{end}}</title> |
| 7 | <link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon.png"> |
| 8 | <link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png"> |
| 9 | <link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png"> |
| 10 | <link rel="manifest" href="/static/site.webmanifest"> |
| 11 | <meta name="theme-color" content="#121113" /> |
| 12 | <meta property="og:title" content="blobs"> |
| 13 | <meta property="og:type" content="website"> |
| 14 | <meta property="og:image" content="/static/og.png"> |
| 15 | <meta name="twitter:card" content="summary_large_image"> |
| 16 | <meta name="twitter:image" content="/static/og.png"> |
| 17 | <link rel="stylesheet" href="/assets/darkmatter.css"> |
| 18 | <link rel="stylesheet" href="/static/app.css"> |
| 19 | </head> |
| 20 | <body> |
| 21 | <header class="header"> |
| 22 | <a href="/buckets" class="logo">BLOBS</a> |
| 23 | <nav class="links"> |
| 24 | <a href="/buckets">buckets</a> |
| 25 | <form method="POST" action="/logout" class="inline-form"> |
| 26 | <button type="submit" class="link-button">logout</button> |
| 27 | </form> |
| 28 | </nav> |
| 29 | </header> |
| 30 | <main> |
| 31 | {{block "content" .}}{{end}} |
| 32 | </main> |
| 33 | </body> |
| 34 | </html>{{end}} |