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