diff options
| author | Fuwn <[email protected]> | 2020-11-19 23:53:52 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2020-11-19 23:53:52 +0000 |
| commit | 26b647ca3f006662676690e6b99bfbfb32167738 (patch) | |
| tree | 1815e651090e928341b7f88be6781028a400b19a /templates/header.html.hbs | |
| parent | feat: limitations in readme (diff) | |
| download | chan-26b647ca3f006662676690e6b99bfbfb32167738.tar.xz chan-26b647ca3f006662676690e6b99bfbfb32167738.zip | |
feat, chore (desc)
feat:
- add example database
- ADD BOARDS
- 404 page
- better ui (bootstrap)
chore:
- move structures to strucutres file
- various capitalizations
Diffstat (limited to 'templates/header.html.hbs')
| -rw-r--r-- | templates/header.html.hbs | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/templates/header.html.hbs b/templates/header.html.hbs index 6057f69..28786e4 100644 --- a/templates/header.html.hbs +++ b/templates/header.html.hbs @@ -1,16 +1,16 @@ -<style> - * { - font-family: cursive; - } -</style> +{{> layout }} -<title>chan</title> +<ul class="nav justify-content-center"> + <li class="nav-item"> + <a class="nav-link" href="/"> + Home + </a> + </li> -<center> -<nav> - <p>chan</a> | - <a href="/">index</a> | - <a href="/post">post</a> | - <a href="/threads">threads</a> -</nav> + <li class="nav-item"> + <a class="nav-link" href="/boards"> + Boards + </a> + </li> +</ul> <br> |