Neale Pickett
·
2024-12-05
default.html
1<!DOCTYPE html>
2<html lang="{{ site.lang | default: "en-US" }}">
3 <head>
4 <meta charset='utf-8'>
5 <meta name="viewport" content="width=device-width">
6 <link rel="stylesheet" href="{{ '/assets/css/dirtbags.css?v=' | append: site.github.build_revision | relative_url }}">
7 <link rel="icon" type="image/png" href="{{ '/assets/images/icon.png' | relative_url }}">
8{% if page.scripts %}{% for js_file in page.scripts %}
9 <script src="{{ js_file }}"></script>
10{% endfor %}{% endif %}
11 <title>{{ site.title | default: site.github.repository_name }} by {{ site.github.owner_name }}</title>
12 </head>
13
14 <body>
15 <h1 id="title">{{ page.title | default: site.title }}</h1>
16
17{{ content }}
18
19 <nav>
20 <ul>
21 <li><a href="{{ '/' | relative_url }}">Home</a></li>
22 <li><a href="{{ '/intro' | relative_url }}">Introduction</a></li>
23 <li><a href="{{ '/forf' | relative_url }}">Forf</a></li>
24 <li><a href="{{ '/procs' | relative_url }}">Procedures</a></li>
25 <li><a href="{{ '/history' | relative_url }}">History</a></li>
26 <li><a href="{{ '/thanks' | relative_url }}">Thanks</a></li>
27 <li><a href="https://github.com/dirtbags/tanks" title="Tanks on Github">Source</a></li>
28 </ul>
29 </nav>
30 </body>
31</html>