test something

This commit is contained in:
ashley 2025-09-10 01:25:43 +02:00
parent 03a2fca93a
commit f83c5cee03

View File

@ -1017,7 +1017,7 @@ margin-left: 10px;
<p style="margin-left: 2em;margin-bottom: -3em;font-size: 0.8em;color: gray;">@<%=ID%></p>
</div>
<p style="padding:0;font-weight:bold;text-align:left;margin-left: 1em;margin-top: 0.2em;">
<%- getFirstLine(cinv.description).slice(0, 29) || "More from this channel (soon)"%> <a style="color:gray;" href="/channel?id=<%=ID%>&tab=about">
<%- getFirstLine(cinv.description).slice(0, 30) || "More from this channel (soon)"%> <a style="color:gray;margin-left:-2px" href="/channel?id=<%=ID%>&tab=about">
...more</a>
</p>
<a href="/feeds/videos.xml?channel_id=<%=ID%>"><button class="subscribe-button">Rss feed</button>
@ -1673,6 +1673,17 @@ margin-left: 10px;
<p style="color:#fff;margin-left: 10px;font-weight: bold;"><%-cinv.descriptionHtml%></p>
<% } %>
<% if (Array.isArray(cinv?.tags)) { %>
<div class="video-title" style=";font-stretch: extra-expanded;margin-top: 10px;margin-bottom: -10px;padding: 10px;border-top-left-radius: 11px;border-top-right-radius: 11px;font-family: &quot;poketube flex&quot; , sans-serif;font-weight: 1000;text-align: left;">Tags</div>
<div class="tags-channel" style="padding: 10px;background: #272727;margin-top: 10px;border-radius: 11px;">
<br>
<% cinv.tags.forEach(x => { %>
<div class="tag-channel">
<a href="/hashtag/<%=x %>" style="color:var(--text-color)">
<%=x %>
</a>
</div> <% }) %>
<% } %>
<% } %>
</div>
<% } %>