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/layout.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/layout.html.hbs')
| -rw-r--r-- | templates/layout.html.hbs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/templates/layout.html.hbs b/templates/layout.html.hbs new file mode 100644 index 0000000..a9c0dcc --- /dev/null +++ b/templates/layout.html.hbs @@ -0,0 +1,28 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> + <meta name="description" content="A simple `chan'-like board written in Rust."> + <meta name="author" content="Fuwn"> + + <!-- External --> + <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous"> + </head> + + <body> + <style> + * { + font-family: Arial, Helvetica, sans-serif + } + + .footer { + position: absolute; + left: 0; + bottom: 0; + width: 100%; + text-align: center; + } + </style> + + <div class="container"> |