draft of field manua
This commit is contained in:
@@ -0,0 +1,96 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{% if page.title %}{{ page.title }} - {% endif %}{{ site.title }}</title>
|
||||
<meta name="description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}">
|
||||
|
||||
<!-- Favicon -->
|
||||
<link rel="icon" type="image/x-icon" href="{{ '/assets/images/favicon.ico' | relative_url }}">
|
||||
|
||||
<!-- Stylesheets -->
|
||||
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
|
||||
|
||||
<!-- Security headers -->
|
||||
<meta http-equiv="X-Content-Type-Options" content="nosniff">
|
||||
<meta http-equiv="X-Frame-Options" content="DENY">
|
||||
<meta http-equiv="X-XSS-Protection" content="1; mode=block">
|
||||
|
||||
<!-- No tracking -->
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
</head>
|
||||
<body>
|
||||
<header class="header">
|
||||
<div class="container">
|
||||
<div class="header-content">
|
||||
<div class="logo">
|
||||
<span class="omega">Ω</span>
|
||||
<span>{{ site.manual_designation }}</span>
|
||||
</div>
|
||||
<button class="nav-toggle" id="nav-toggle" aria-label="Toggle navigation">
|
||||
☰
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="main-layout">
|
||||
<nav class="sidebar" id="sidebar">
|
||||
{% include navigation.html %}
|
||||
</nav>
|
||||
|
||||
<main class="content">
|
||||
<div class="content-header">
|
||||
<div class="manual-designation">{{ site.manual_designation }}: {{ site.subtitle }}</div>
|
||||
<div class="classification">{{ site.classification }}</div>
|
||||
{% if page.section_number %}
|
||||
<div class="section-number">Section {{ page.section_number }}</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
{{ content }}
|
||||
|
||||
{% if page.prev_page or page.next_page %}
|
||||
<nav class="section-nav">
|
||||
{% if page.prev_page %}
|
||||
<a href="{{ page.prev_page.url | relative_url }}" class="nav-link">
|
||||
<span class="arrow">←</span>
|
||||
<span>{{ page.prev_page.title }}</span>
|
||||
</a>
|
||||
{% else %}
|
||||
<div></div>
|
||||
{% endif %}
|
||||
|
||||
{% if page.next_page %}
|
||||
<a href="{{ page.next_page.url | relative_url }}" class="nav-link">
|
||||
<span>{{ page.next_page.title }}</span>
|
||||
<span class="arrow">→</span>
|
||||
</a>
|
||||
{% else %}
|
||||
<div></div>
|
||||
{% endif %}
|
||||
</nav>
|
||||
{% endif %}
|
||||
</main>
|
||||
</div>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="footer-content">
|
||||
<div class="organization">{{ site.organization }}</div>
|
||||
<div>{{ site.bureau }}</div>
|
||||
<div>{{ site.manual_designation }} - Version {{ site.version }} - {{ site.date }}</div>
|
||||
<div style="margin-top: 1rem;">
|
||||
<a href="https://resist.is" target="_blank">resist.is</a> |
|
||||
<a href="https://git.hacker.supply/Department_of_Internautics/field_guide" target="_blank">Source Code</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- JavaScript -->
|
||||
<script src="{{ '/assets/js/main.js' | relative_url }}"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user