mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-06-06 13:54:47 +00:00
15 lines
423 B
HTML
15 lines
423 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="flex flex-col mx-auto text-center">
|
|
<h1>DON'T PANIC!</h1>
|
|
<h2>404: Page not found!</h2>
|
|
|
|
<img class="mx-auto max-h-[50vh]"
|
|
src="{{ get_url(path='images/panic.svg') | safe }}"
|
|
alt="">
|
|
|
|
<a class="text-2xl font-bold" href="{{ get_url(path='@/_index.md') }}">Back to homepage</a>
|
|
</div>
|
|
{% endblock %}
|