├── Procfile ├── README.md ├── templates ├── wordnotfound.html ├── word.html └── base.html ├── requirements.txt ├── LICENSE └── app.py /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SimplyVocab: A minimalist English dictionary 2 | 3 | Go to https://simplyvocab.onrender.com to see it in action. 4 | -------------------------------------------------------------------------------- /templates/wordnotfound.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% block content %} 3 |
{{ e }}
26 | {% endif %} 27 |