Spaces:
Paused
Paused
| <html> | |
| <head> | |
| <title>gmserver</title> | |
| <style> | |
| * { | |
| box-sizing: border-box; | |
| } | |
| /* Create two equal columns that floats next to each other */ | |
| .columnleft { | |
| float: left; | |
| padding: 10px; | |
| width: 15%; | |
| } | |
| .columncenter { | |
| float: left; | |
| padding: 10px; | |
| width: 80%; | |
| } | |
| /* Clear floats after the columns */ | |
| .row:after { | |
| content: ""; | |
| display: table; | |
| clear: both; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="row"> | |
| <div class="columnleft"> | |
| <img src="/static/logo.jpeg" width="50px"> | |
| </div> | |
| <div class="columncenter" align="center"> | |
| <h1>{{messageD['title']}}</h1> | |
| {% for message in messageD['messageL']:%} | |
| <h4>{{message}}</h4> | |
| {% endfor %} | |
| </div> | |
| </div> | |
| </body> | |
| </html> | |