rural-dict/templates/404.html

13 lines
364 B
HTML
Raw Permalink Normal View History

2024-10-05 21:01:11 +00:00
{% extends "base.html" %} {% block content %}
<div style="text-align: center">
<h2>Definition not found: {{ term }}</h2>
{% if similar_words %}
{% for word in similar_words %}
<h3 class="underline-links">{{ word | safe }}</h3>
{% endfor %}
{% else %}
<p>There are no similar words. Try correcting your search.</p>
{% endif %}
</div>
{% endblock %}