404.html 364 B

123456789101112
  1. {% extends "base.html" %} {% block content %}
  2. <div style="text-align: center">
  3. <h2>Definition not found: {{ term }}</h2>
  4. {% if similar_words %}
  5. {% for word in similar_words %}
  6. <h3 class="underline-links">{{ word | safe }}</h3>
  7. {% endfor %}
  8. {% else %}
  9. <p>There are no similar words. Try correcting your search.</p>
  10. {% endif %}
  11. </div>
  12. {% endblock %}