Skip to content

Commit

Permalink
Fix html (#56)
Browse files Browse the repository at this point in the history
* fix embedding indexing and buttons

* fix indexer

* fix search ranking
  • Loading branch information
veekaybee committed Jul 7, 2023
1 parent 6379a98 commit 35b2fba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/api/templates/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<tbody>
{% for item in data %}
<tr>
<td>{{ item[0] if item[0] is not none }}</td>
<td><a href="{{ item[3] }}">{{ item[1] if item[1] is not none}}</a></td>
<td>{{ item[2] }}</td>
<td>{{ item[1] if item[1] is not none }}</td>
<td><a href="{{ item[2] }}">{{ item[0] if item[0] is not none}}</a></td>
<td>{{ item[3] }}</td>
</tr>
{% endfor %}
</tbody>
Expand Down

0 comments on commit 35b2fba

Please sign in to comment.