mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-22 13:57:50 +01:00
fix stfuff :3
This commit is contained in:
parent
bbf52f0cd3
commit
150de7e80c
1 changed files with 13 additions and 15 deletions
|
@ -456,23 +456,21 @@ Web
|
||||||
</div>
|
</div>
|
||||||
<div class="video-list" >
|
<div class="video-list" >
|
||||||
|
|
||||||
<% results.forEach(x => { %>
|
<% results.forEach((x, index) => { %>
|
||||||
<div class="video" style="height: 7em;">
|
<div class="video" style="height: 7em;">
|
||||||
|
|
||||||
<a style="min-width: 81em;" href="<%= x.url %>"><%= x.title %></a><br>
|
<a style="min-width: 81em;" href="<%= x.url %>"><%= x.title %></a><br>
|
||||||
<p style="color:gray;display: flex;flex-direction: column;width: 48em;margin-top: -8em;"><%= x.url %><br>
|
<p style="color:gray;display: flex;flex-direction: column;width: 48em;margin-top: -8em;">
|
||||||
|
<%= x.url %><br>
|
||||||
<% if (!isMobile) { %>
|
<% if (!isMobile) { %>
|
||||||
|
|
||||||
<span class="search-result"><%- x.description %></span>
|
<span class="search-result"><%- x.description %></span>
|
||||||
<% } %>
|
<% } %>
|
||||||
<% if (isMobile) { %>
|
<% if (isMobile) { %>
|
||||||
|
|
||||||
<span class="search-result"><%- x.description %></span>
|
<span class="search-result"><%- x.description %></span>
|
||||||
<% } %>
|
<% } %>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
<% }) %>
|
||||||
|
|
||||||
<% }) %>
|
|
||||||
|
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue