blob: 171870d99def6c797a52128ad1a5a2f165615986 (
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>
<!-- Alee Productions Website: Made by Alee and licensed with GPL-3.0 -->
<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>
|