fix stfuff :3

This commit is contained in:
Ashley //// 2024-02-29 20:27:50 +00:00
parent bbf52f0cd3
commit 150de7e80c

View file

@ -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>