notfound.html (402B)
1 {% extends "page.html" %} 2 3 {% block body %} 4 {% if lang == 'fr' %} 5 <p>Aucun mot connu ne correspond à cette requête. Assurez-vous que vous utilisez 6 bien un mot du dictionnaire. <a href="/about#help">Besoin d'aide ?</a></p> 7 {% else %} 8 <p>No known word matches this query. Make sure you're using a word from the 9 dictionary. Need some <a href="/about#help">help</a>?</p> 10 {% endif %} 11 {% endblock %} 12