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