Tafkas/solarpi

View on GitHub
solarpi/templates/404.html

Summary

Maintainability
Test Coverage

{% extends "layout.html" %}

{% block page_title %}Page Not Found{% endblock %}

{% block content %}
<div class="jumbotron">
    <div class="text-center">
        <h1>404</h1>
        <p>Sorry, that page doesn't exist.</p>
        <p>Want to <a href="{{ url_for('public.home') }}">go home</a> instead?</p>
    </div>
</div>
{% endblock %}