| 1 | {{define "admin_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" .}}Admin{{end}}</title> |
| 7 | <link rel="icon" href="/static/favicon.ico"> |
| 8 | <meta name="theme-color" content="#121113" /> |
| 9 | <link rel="stylesheet" href="/assets/darkmatter.css"> |
| 10 | <link rel="stylesheet" href="/static/styles.css"> |
| 11 | </head> |
| 12 | <body> |
| 13 | <header class="header"> |
| 14 | <a href="/admin" class="logo">POSTS</a> |
| 15 | <nav class="links"> |
| 16 | <a href="/admin">posts</a> |
| 17 | <a href="/admin/pages">pages</a> |
| 18 | <a href="/admin/files">files</a> |
| 19 | <a href="/admin/import">import</a> |
| 20 | <a href="/admin/settings">settings</a> |
| 21 | <a href="/" target="_blank">view site</a> |
| 22 | <a href="/admin/logout">logout</a> |
| 23 | </nav> |
| 24 | </header> |
| 25 | <main> |
| 26 | {{block "content" .}}{{end}} |
| 27 | </main> |
| 28 | </body> |
| 29 | </html>{{end}} |