|
<html> |
|
<head> |
|
<title>gmserver</title> |
|
<style> |
|
* { |
|
box-sizing: border-box; |
|
} |
|
|
|
.columnleft { |
|
float: left; |
|
padding: 10px; |
|
width: 15%; |
|
} |
|
.columncenter { |
|
float: left; |
|
padding: 10px; |
|
width: 80%; |
|
} |
|
|
|
.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> |
|
|