diff options
author | Yigit Sever | 2021-04-15 00:32:28 +0300 |
---|---|---|
committer | Yigit Sever | 2021-04-15 03:46:30 +0300 |
commit | 2b866db08bd20985a570c4f0f292aaecfe1ea052 (patch) | |
tree | 964b546c50d98b91827a15ed7ed70c94111685d6 /templates/header.html | |
parent | bddea30ecb76f0c4805758d3b36aab52f176ff9b (diff) | |
download | gradecoin-2b866db08bd20985a570c4f0f292aaecfe1ea052.tar.gz gradecoin-2b866db08bd20985a570c4f0f292aaecfe1ea052.tar.bz2 gradecoin-2b866db08bd20985a570c4f0f292aaecfe1ea052.zip |
Add template support
We are now serving static HTML alongside Gradecoin REST
Diffstat (limited to 'templates/header.html')
-rw-r--r-- | templates/header.html | 11 |
1 files changed, 11 insertions, 0 deletions
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 /> | ||