|
@@ -10,11 +10,11 @@
|
|
|
<body>
|
|
|
<center>
|
|
|
<a href="/">
|
|
|
- <img src="{{ url_for('static', filename='img/logo.png') }}">
|
|
|
+ <img src="{{ url_for('static', filename='img/logo.png') }}">
|
|
|
</a>
|
|
|
<form id="search" role="search" method="get" action="/define.php">
|
|
|
<input type="search" id="term" name="term" placeholder="Search" autofocus>
|
|
|
- <button>Go</button>
|
|
|
+ <button>Go</button>
|
|
|
</form>
|
|
|
<a href=/random.php>Random</a>
|
|
|
</center>
|
|
@@ -22,15 +22,18 @@
|
|
|
{% for defid, word, definition, example, author in data[0] %}
|
|
|
|
|
|
<div class="{{ defid }}">
|
|
|
- <a href="/define.php?term={{ word }}">
|
|
|
- <h2>{{ word }}</h2>
|
|
|
- </a>
|
|
|
- <p>{{ definition|safe }}</p>
|
|
|
- <p><i>{{ example|safe }}</i></p>
|
|
|
- <p>{{ author|safe }}</p>
|
|
|
+ <a href="/define.php?term={{ word }}">
|
|
|
+ <h2>{{ word }}</h2>
|
|
|
+ </a>
|
|
|
+ <p>{{ definition|safe }}</p>
|
|
|
+ <p><i>{{ example|safe }}</i></p>
|
|
|
+ <p>{{ author|safe }}</p>
|
|
|
</div>
|
|
|
<br>
|
|
|
{% endfor %}
|
|
|
{{ data[1]|safe }}
|
|
|
+ <center>
|
|
|
+ <p><a href="https://git.vern.cc/cobra/rural-dict">Source Code</a></p>
|
|
|
+ </center>
|
|
|
</body>
|
|
|
</html>
|