Spaces:
Running
Running
File size: 794 Bytes
d08c977 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
<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>
|