index.html 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Rural Dictionary</title>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width">
  7. <link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
  8. <link rel="icon" type="image/png" href="{{ url_for('static', filename='img/favicon.png') }}">
  9. </head>
  10. <body>
  11. <center>
  12. <a href="/">
  13. <img src="{{ url_for('static', filename='img/logo.png') }}">
  14. </a>
  15. <form id="search" role="search" method="get" action="/define.php">
  16. <input type="search" id="term" name="term" placeholder="Search">
  17. <button>Go</button>
  18. </form>
  19. <a href=/random.php>Random</a>
  20. </center>
  21. <br>
  22. {% for defid, word, definition, example, author in data[0] %}
  23. <div class="{{ defid }}">
  24. <a href="/define.php?term={{ word }}">
  25. <h2>{{ word }}</h2>
  26. </a>
  27. <p>{{ definition|safe }}</p>
  28. <p><i>{{ example|safe }}</i></p>
  29. <p>{{ author|safe }}</p>
  30. </div>
  31. <br>
  32. {% endfor %}
  33. {{ data[1]|safe }}
  34. </body>
  35. </html>