Browse Source

Remove <p> tag in source code link

Signed-off-by: Skylar "The Cobra" Widulski <cobra@vern.cc>
Skylar "The Cobra" Widulski 1 year ago
parent
commit
d21ad8da6c
1 changed files with 7 additions and 7 deletions
  1. 7 7
      templates/index.html

+ 7 - 7
templates/index.html

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