TabbycatDebate/tabbycat

View on GitHub
tabbycat/templates/404.html

Summary

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

{% block page-title %}Page Not Found (404){% endblock %}
{% block head-title %}
  <h2><span class="emoji">😿</span> Page Not Found (404)</h2>
{% endblock %}

{% block nav %}{% endblock %}

{% block content %}
  <div class="card">
    <div class="card-body h4">
      Sorry, there doesn't appear to be a page at this URL.
      <a href="/">Go back to the homepage?</a>
    </div>
  </div>
{% endblock %}