YouTransfer/YouTransfer

View on GitHub
src/views/errors/404.html

Summary

Maintainability
Test Coverage
{% extends "layout.html" %}

{% block header %}
{% endblock %}

{% block content %}
<div id="notfound" class="hp jumbotron">
    <h1>404 Page not found</h1>
    <h2>Unless you were deliberatly looking for this beautiful error message ;)</h2>
    <div class="link text-center">
        <a href="/">No worries, you can safely return to the homepage</a>
    </div>
</div>
{% endblock %}