mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-24 06:22:16 +00:00
15 lines
408 B
HTML
15 lines
408 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Page Not Found{% endblock %}
|
|
|
|
{% block content_wrapper %}
|
|
<div class="flex justify-center items-center mb-4 bg-red-600">
|
|
<h1 class="m-10 text-5xl text-white">404 - Page Not Found</h1>
|
|
</div>
|
|
<div class="container px-4 my-8 mx-auto">
|
|
<p class="text-2xl text-center">
|
|
The page you requested was not found on this site.
|
|
</p>
|
|
</div>
|
|
{% endblock %}
|