blob: c8f24b16e87786563e06bea7820748c891772454 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!doctype html>
<html lang="en">
<head>
{% include heading.html %}
<title>{{ page.title }} | Silicon Linux</title>
</head>
<body class="bg-dark text-white">
<div class="wrapper">
{% include navigator.html %}
<div class="container">
{{ content }}
</div>
</div>
{% include footing.html %}
{% include footer.html %}
</body>
</html>
|