Skip to main content

max / multithreaded

600 B · 23 lines History Blame Raw
1 {% extends "base.html" %}
2
3 {% block title %}Not Found — Multithreaded{% endblock %}
4
5 {% block head %}<meta name="robots" content="noindex">{% endblock %}
6
7 {% block header %}{% include "partials/site_header.html" %}{% endblock %}
8
9 {% block content %}
10 <div class="container">
11 <div class="breadcrumb">
12 <a href="/">Forums</a>
13 <span class="sep">/</span>
14 Not Found
15 </div>
16 <div class="error-page">
17 <h2>404</h2>
18 <p>The page you're looking for doesn't exist.</p>
19 <a href="/" class="btn-primary">Back to Forums</a>
20 </div>
21 </div>
22 {% endblock %}
23