The design has been slightly modernized in the process. jQuery was also removed as it is no longer required, resulting in faster page loading times. Gallery thumbnails were regenerated at an higher resolution to match the new design.
36 lines
883 B
HTML
36 lines
883 B
HTML
---
|
|
title: Page not found
|
|
jumbotron: credits
|
|
layout: default
|
|
permalink: 404.html
|
|
---
|
|
|
|
<section class="section">
|
|
<div class="container">
|
|
<div class="content">
|
|
|
|
<div class="columns is-centered">
|
|
<div class="column is-6">
|
|
<div class="has-text-centered">
|
|
<img
|
|
src="{{ '/media/unknown_node.jpg' | relative_url }}"
|
|
alt=""
|
|
>
|
|
|
|
<h2>Sorry, we could not find that page!</h2>
|
|
<p>
|
|
<a href="{{ '/' | relative_url }}" class="has-text-weight-bold">Go to the homepage</a>
|
|
</p>
|
|
<p>
|
|
Please report any broken links on the
|
|
<a href="https://github.com/minetest/minetest.github.io/issues">
|
|
issues page for this website</a>.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|