aboutsummaryrefslogtreecommitdiffstats
path: root/webface/templates/base.html
blob: 8d77a5e7efeffc499e77e3db58f1494d34aa1837 (plain)
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{{#block title}}modelthing{{/block}}</title>
<style>
html, body, div{ margin: 0; padding: 0; }
body { font-family: monospace; font-size: larger; line-height: 1.3; }
#content { max-width: 700px; margin: 0 auto; margin-top: 4em; }
</style>
</head>

<body>
<div id="content">
{{~#block content}}{{/block~}}

<br><br>
<center>
<a href="/model_list/">examples index</a> -
<a href="/readme/">full readme</a> -
<a href="https://git.bnewbold.net/modelthing">source code</a>
</center>
<br>

</div><!-- content -->
</body>

</html>