diff options
author | Yigit Sever | 2021-04-15 00:32:28 +0300 |
---|---|---|
committer | Yigit Sever | 2021-04-15 00:32:28 +0300 |
commit | 868c9714d852761bf3ee389e4730098e2bc59b46 (patch) | |
tree | 257b0bea537666d0656504208a4e81666fbf908b /templates | |
parent | cc1426f6d4e811fdb26a8ba5cff487ba63d0a6b5 (diff) | |
download | gradecoin-868c9714d852761bf3ee389e4730098e2bc59b46.tar.gz gradecoin-868c9714d852761bf3ee389e4730098e2bc59b46.tar.bz2 gradecoin-868c9714d852761bf3ee389e4730098e2bc59b46.zip |
[WIP] Add template support
Diffstat (limited to 'templates')
-rw-r--r-- | templates/css.html | 8 | ||||
-rw-r--r-- | templates/footer.html | 2 | ||||
-rw-r--r-- | templates/header.html | 11 | ||||
-rw-r--r-- | templates/menu.html | 5 | ||||
-rw-r--r-- | templates/welcome.html | 8 |
5 files changed, 34 insertions, 0 deletions
diff --git a/templates/css.html b/templates/css.html new file mode 100644 index 0000000..c9d54e3 --- /dev/null +++ b/templates/css.html | |||
@@ -0,0 +1,8 @@ | |||
1 | <style> | ||
2 | td, th { | ||
3 | padding: 8px; | ||
4 | } | ||
5 | th { | ||
6 | text-align: left; | ||
7 | } | ||
8 | </style> | ||
diff --git a/templates/footer.html b/templates/footer.html new file mode 100644 index 0000000..2ab5c0d --- /dev/null +++ b/templates/footer.html | |||
@@ -0,0 +1,2 @@ | |||
1 | </body> | ||
2 | </html> | ||
diff --git a/templates/header.html b/templates/header.html new file mode 100644 index 0000000..fffbefe --- /dev/null +++ b/templates/header.html | |||
@@ -0,0 +1,11 @@ | |||
1 | <html> | ||
2 | <head> | ||
3 | <title>Bookstore</title> | ||
4 | {% include "css.html" %} | ||
5 | </head> | ||
6 | <body> | ||
7 | <div> | ||
8 | <h1>Bookstore</h1> | ||
9 | </div> | ||
10 | {% include "menu.html" %} | ||
11 | <hr /> | ||
diff --git a/templates/menu.html b/templates/menu.html new file mode 100644 index 0000000..0f4e85f --- /dev/null +++ b/templates/menu.html | |||
@@ -0,0 +1,5 @@ | |||
1 | <div class="menu"> | ||
2 | <span class="menuitem"> | ||
3 | <a href = "/books/list">Books</a> | ||
4 | </span> | ||
5 | </div> | ||
diff --git a/templates/welcome.html b/templates/welcome.html new file mode 100644 index 0000000..ca60f33 --- /dev/null +++ b/templates/welcome.html | |||
@@ -0,0 +1,8 @@ | |||
1 | {% include "header.html" %} | ||
2 | <div class="entry"> | ||
3 | <h1>{{title}}</h1> | ||
4 | <div class="body"> | ||
5 | {{body}} | ||
6 | </div> | ||
7 | </div> | ||
8 | {% include "footer.html" %} | ||