65 lines
1.7 KiB
HTML
65 lines
1.7 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
{% block head %}
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title>
|
||
|
{% block head_title %}
|
||
|
RFCartography
|
||
|
{% endblock head_title %}
|
||
|
</title>
|
||
|
<link rel="icon" type="image/svg+xml" href="{{ url_for('static', filename='favicon.svg') }}" sizes="any" />
|
||
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/reset.css') }}" />
|
||
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/rfcartography.css') }}" />
|
||
|
{% endblock head %}
|
||
|
</head>
|
||
|
<body>
|
||
|
<header>
|
||
|
<img src="{{ url_for('static', filename='favicon.svg') }}" alt="RFCartography Logo" title="RFCartography" />
|
||
|
<a href="/">
|
||
|
<h1>
|
||
|
<span>RFC</span><span>artography</span>
|
||
|
</h1>
|
||
|
</a>
|
||
|
<nav>
|
||
|
<form action="/map" method="get" id="quicksearch">
|
||
|
<label for="type">Series/Subseries</label>
|
||
|
<select name="type" id="type" form="quicksearch">
|
||
|
<option value="rfc">RFC</option>
|
||
|
<option value="std">STD</option>
|
||
|
<option value="bcp">BCP</option>
|
||
|
<option value="fyi">FYI</option>
|
||
|
</select>
|
||
|
<label for="num">Document Number</label>
|
||
|
<input type="number" name="num" id="num" form="quicksearch" />
|
||
|
<input type="submit" value="→" form="quicksearch" />
|
||
|
</form>
|
||
|
</nav>
|
||
|
</header>
|
||
|
<main>
|
||
|
{% block main %}
|
||
|
{% endblock %}
|
||
|
</main>
|
||
|
<footer>
|
||
|
<ul>
|
||
|
<li>
|
||
|
<a href="{{ config['META']['SOURCE'] }}">
|
||
|
Source
|
||
|
</a>
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="{{ url_for('imprint') }}">
|
||
|
Imprint
|
||
|
</a>
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="{{ url_for('privacy') }}">
|
||
|
Privacy
|
||
|
</a>
|
||
|
</li>
|
||
|
</ul>
|
||
|
</footer>
|
||
|
</body>
|
||
|
</html>
|