blob: 0c0535fe87dc7be16b5f5c0dafedeff349a8b1c2 (
plain) (
blame)
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
|
---
---
<!DOCTYPE html>
<html>
<head>
{% include header.html %}
</head>
<body class="dark">
{% include navbar.html %}
<div class="animsition">
<div class="jumbotron special-color">
<h2 class="display-4">{{page.title}}</h2>
<h2 class="display-4">{{page.header.title}}</h2>
<p class="lead">{{page.description}}</p>
</div>
<div class="container">
{{ content }}
</div>
{% include scripts.html %}
{% include footer.html %}
</div>
</body>
</html>
|