repos

blog.bythewood.me-rust

mirror archived upstream

Single-binary self-hosted Markdown blog on Rust axum: no database, live search, Typst PDF export, and strong SEO.

axumblogdockermarkdownminijinjarustself-hostedtypstvite

478 B · 21 lines · HTML Raw History
 1{% extends 'base.html' %}
 2
 3
 4{% block title %}404{% endblock %}
 5{% block description %}That means the page you are looking for doesn't exist.{% endblock %}
 6
 7
 8{% block breadcrumb_wrapper %}{% endblock %}
 9
10
11{% block main %}
12<div class="container">
13  <div class="row">
14    <div class="col text-center py-5">
15      <h1 class="display-1 fw-bold">404</h1>
16      <p class="text-muted">That means the page you are looking for doesn't exist.</p>
17    </div>
18  </div>
19</div>
20{% endblock %}