1 2 3 4 5 6 7 8 9 10 11 12 | {% extends "base.html" %} {% block body_class %}blog{% endblock %} {% block content %} <div class="post clearfix"> <div class="date">404</div> <h2>Page not found</h2> <p class="teaser">I couldn't find the page you were looking for.</p> </div> {% endblock %} |