Remove <p> tag in source code link

Signed-off-by: Skylar "The Cobra" Widulski <cobra@vern.cc>
This commit is contained in:
Skylar "The Cobra" Widulski 2023-08-04 19:06:47 -04:00
parent ffb4e6efae
commit d21ad8da6c
Signed by: cobra
GPG Key ID: 4FD8F812083FF6F9
1 changed files with 7 additions and 7 deletions

View File

@ -22,18 +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="http://git.vern.cc/cobra/rural-dict">Source Code</a></p>
<a href="http://git.vern.cc/cobra/rural-dict">Source Code</a>
</center>
</body>
</html>