1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <!doctype html>
- <html lang="en">
- <head>
- <title>Rural Dictionary{% if term %}: {{ term }}{% endif %}</title>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <meta name="robots" content="index, follow" />
- <link rel="stylesheet" href="{{ url_for('static', path='css/main.css') }}" />
- <link rel="icon" type="image/png" href="{{ url_for('static', path='img/favicon.png') }}" />
- </head>
- <body>
- <div style="text-align: center">
- <a href="/">
- <img src="{{ url_for('static', path='img/logo.png') }}" />
- </a>
- <form id="search" role="search" method="get" action="/define.php">
- <input
- autocomplete="off"
- type="search"
- id="term"
- name="term"
- placeholder="Search"
- autofocus
- />
- <button>Go</button>
- </form>
- <a href="/random.php">Random</a>
- <br />
- <a href="https://git.vern.cc/cobra/rural-dict">Source Code</a>
- </div>
- <br />
- {% for definition_id, word, meaning, example, contributor, thumbs_up, thumbs_down in results %}
- <div data-id="{{ definition_id }}">
- <a href="/define.php?term={{ word }}">
- <h2>{{ word }}</h2>
- </a>
- <p>{{ meaning|safe }}</p>
- <p><i>{{ example|safe }}</i></p>
- <div>{{ contributor|safe }}</div>
- {% if thumbs_up and thumbs_down %}
- <p>
- <span title="thumbs up">👍{{ thumbs_up|safe }}</span>
- <span title="thumbs down">👎{{ thumbs_down|safe }}</span>
- </p>
- {% endif %}
- </div>
- <br />
- {% endfor %} {% if pagination %}{{ pagination|safe }} {% endif %}
- </body>
- </html>
|