This repository has been archived on 2022-09-16. You can view files and clone it, but cannot push or open issues/pull-requests.
tlaternet-templates/src/404.html

22 lines
620 B
HTML

<extends src="./lib/html/base.html">
<block name="content">
<section class="section">
<div class="container">
<h1 class="title has-text-weight-normal">404</h1>
<div class="columns">
<div class="column content">
<!-- prettier-ignore -->
<markdown>
Whatever you were expecting to see here doesn't exist.
If you were sent here from a link and you really think
this page *should* exist, feel free to contact me!
</markdown>
</div>
</div>
</div>
</section>
</block>
</extends>