gmshroff commited on
Commit
d08c977
1 Parent(s): 6b0d50b

added template

Browse files
Files changed (2) hide show
  1. .DS_Store +0 -0
  2. templates/home.html +40 -0
.DS_Store CHANGED
Binary files a/.DS_Store and b/.DS_Store differ
 
templates/home.html ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <title>gmserver</title>
4
+ <style>
5
+ * {
6
+ box-sizing: border-box;
7
+ }
8
+ /* Create two equal columns that floats next to each other */
9
+ .columnleft {
10
+ float: left;
11
+ padding: 10px;
12
+ width: 15%;
13
+ }
14
+ .columncenter {
15
+ float: left;
16
+ padding: 10px;
17
+ width: 80%;
18
+ }
19
+ /* Clear floats after the columns */
20
+ .row:after {
21
+ content: "";
22
+ display: table;
23
+ clear: both;
24
+ }
25
+ </style>
26
+ </head>
27
+ <body>
28
+ <div class="row">
29
+ <div class="columnleft">
30
+ <img src="/static/logo.jpeg" width="50px">
31
+ </div>
32
+ <div class="columncenter" align="center">
33
+ <h1>{{messageD['title']}}</h1>
34
+ {% for message in messageD['messageL']:%}
35
+ <h4>{{message}}</h4>
36
+ {% endfor %}
37
+ </div>
38
+ </div>
39
+ </body>
40
+ </html>