mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 05:34:40 -05:00
Fix search
This commit is contained in:
parent
6a77c0d1ef
commit
3dc33bbb47
1 changed files with 5 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
||||||
<!--
|
<!--
|
||||||
This Source Code Form is subject to the terms of the GNU General Public License:
|
This Source Code Form is subject to the terms of the GNU General Public License:
|
||||||
|
|
||||||
Copyright (C) 2021-2023 POKETUBE (https://codeberg.org/Ashley/poketube)
|
Copyright (C) 2021-2024 POKETUBE (https://codeberg.org/Ashley/poketube)
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
This program is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -447,15 +447,15 @@ Web
|
||||||
<% results.forEach(x => { %>
|
<% results.forEach(x => { %>
|
||||||
<div class="video" style="height: 6em;">
|
<div class="video" style="height: 6em;">
|
||||||
|
|
||||||
<a style="min-width: 81em;" href="<%= x.link %>"><%= x.title %></a><br>
|
<a style="min-width: 81em;" href="<%= x.href %>"><%= x.title %></a><br>
|
||||||
<p style="color:gray;display: flex;flex-direction: column;width: 48em;margin-top: -8em;"><%= x.link %><br>
|
<p style="color:gray;display: flex;flex-direction: column;width: 48em;margin-top: -8em;"><%= x.href %><br>
|
||||||
<% if (!isMobile) { %>
|
<% if (!isMobile) { %>
|
||||||
|
|
||||||
<span style="color:white;width: 48em;display: flex;"><%= x.snippet %></span>
|
<span style="color:white;width: 48em;display: flex;"><%= x.body %></span>
|
||||||
<% } %>
|
<% } %>
|
||||||
<% if (isMobile) { %>
|
<% if (isMobile) { %>
|
||||||
|
|
||||||
<span style="color:white;max-width: 15em;display: flex;"><%= x.snippet %></span>
|
<span style="color:white;max-width: 15em;display: flex;"><%= x.body %></span>
|
||||||
<% } %>
|
<% } %>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue