mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 03:28:35 +01:00
add tags for channels
This commit is contained in:
parent
4b7d4d2f43
commit
9f3ec29813
1 changed files with 27 additions and 0 deletions
|
@ -198,6 +198,22 @@ padding-bottom: 32px;
|
|||
<!-- STYLES START -->
|
||||
|
||||
<style>
|
||||
|
||||
.tags-channel {
|
||||
display:flex;
|
||||
flex-direction:row;
|
||||
overflow-x:auto;
|
||||
column-gap:3px
|
||||
}
|
||||
.tag-channel {
|
||||
background:#333;
|
||||
padding:5px;
|
||||
border-radius:4px;
|
||||
word-break:break-all;
|
||||
white-space:nowrap;
|
||||
font-family:Montserrat,sans-serif
|
||||
}
|
||||
|
||||
a.class:hover {
|
||||
text-decoration:underline;
|
||||
font-weight:bold
|
||||
|
@ -1575,6 +1591,17 @@ width: fit-content;
|
|||
</div>
|
||||
|
||||
<% } %>
|
||||
<% if (Array.isArray(inv_vid?.tags)) { %>
|
||||
<div class="video-title" style="background: #272727;color:var(--text-color);font-family:var(--text-font-primary);;font-weight:var(--text-header-weight);font-stretch: extra-expanded;margin-top: 10px;margin-bottom: -10px;padding: 10px;border-top-left-radius: 11px;border-top-right-radius: 11px;">Tags</div>
|
||||
<div class="tags-channel" style="padding: 10px;background: #272727;margin-top: 10px;border-bottom-left-radius: 11px;border-bottom-right-radius:11px;">
|
||||
<br>
|
||||
<% inv_vid.tags.forEach(x => { %>
|
||||
<div class="tag-channel">
|
||||
<a href="/hashtag/<%=x %>" style="color:var(--text-color)">
|
||||
<%=x %>
|
||||
</a>
|
||||
</div> <% }) %>
|
||||
|
||||
<% } %>
|
||||
<% } %>
|
||||
|
||||
|
|
Loading…
Reference in a new issue