19 lines
343 B
HTML
19 lines
343 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
{% include head.html %}
|
|
|
|
<style type="text/css">
|
|
.navbar { margin-bottom: 0; }
|
|
.jumbotron-side { padding-top: 2em; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{% include navigation.html %}
|
|
|
|
{{ content }}
|
|
|
|
{% include footer.html %}
|
|
</body>
|
|
</html>
|