1
Fork 0
poke/html/channel.ejs

1424 lines
43 KiB
Text
Raw Normal View History

2023-09-27 14:20:31 -04:00
<% try { %>
2023-11-16 02:39:08 -05:00
2023-09-27 14:20:31 -04:00
<!--
2022-08-08 09:03:31 -04:00
This Source Code Form is subject to the terms of the GNU General Public License:
2023-10-06 17:55:46 -04:00
Copyright (C) 2021-2023 POKETUBE (https://codeberg.org/Ashley/poketube)
2022-08-08 09:03:31 -04:00
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
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see https://www.gnu.org/licenses/.
-->
2022-12-09 12:12:21 -05:00
<!DOCTYPE html><html><head>
<% if (ID === "UCFAiFyGs6oDiF1Nf-rRJpZA") { %>
2022-07-07 09:57:43 -04:00
<title>Technoblade Never Dies! - PokeTube</title>
2022-07-01 12:26:34 -04:00
<% } %>
2023-09-16 00:37:28 -04:00
<title><%=j.Channel?.Metadata.Name%> - PokeTube</title>
2023-09-30 12:29:26 -04:00
<link rel="manifest" href="/manifest.json">
2022-08-24 07:24:31 -04:00
<link href=css/yt-ukraine.svg rel=icon>
2022-03-07 11:11:05 -05:00
<meta content=website property=og:type>
2023-09-16 00:37:28 -04:00
<meta content="<%=j.Channel?.Metadata.Name%> - PokeTube" property=og:title>
2022-06-25 05:02:49 -04:00
<link href=/css/yt-ukraine.svg?v=6 rel=icon>
2023-11-11 07:08:36 -05:00
2022-09-21 05:52:41 -04:00
2023-11-11 07:08:36 -05:00
<meta content="<%- cinv.description %>" property=twitter:description>
<% if (j.Channel?.Metadata.Banners.Thumbnail) { %>
2022-09-21 05:52:41 -04:00
2023-09-27 14:20:31 -04:00
<meta content="<%=j.Channel?.Metadata?.Banners.Thumbnail[2].$t%>" property=og:image>
2022-09-21 08:34:25 -04:00
<% } %>
2022-09-21 03:55:04 -04:00
<meta content=summary_large_image name=twitter:card>
2022-09-21 03:36:33 -04:00
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
2022-09-21 04:50:55 -04:00
* {
color:#fff
}
2022-07-07 07:37:10 -04:00
@font-face {
font-family: 'Ginto Nord';
font-weight: 800;
2022-09-27 10:59:18 -04:00
src:url('https://p.poketube.fun/https://cdn.statically.io/gh/brecert/discord-quote-generator/main/Ginto-Nord-800.woff') format("woff");
2022-07-07 07:37:10 -04:00
}
2023-11-12 03:20:29 -05:00
2023-10-21 08:09:35 -04:00
.channel-info-container > img {
2023-11-12 03:20:29 -05:00
width: 98%;
2023-10-21 08:09:35 -04:00
border-radius: 1em;
2023-11-12 03:20:29 -05:00
margin-top: 6px;
margin-bottom: -9px;
2022-07-05 03:18:34 -04:00
}
:root {
2022-06-24 03:46:29 -04:00
--text-primary: #fff;
--text-secondary: #fff;
--text-link: #3ea6ff;
2022-07-07 09:57:43 -04:00
2022-06-24 03:46:29 -04:00
--app-background: #000;
--context-menu-background: #000;
--border-color: #444;
--item-hover-background: #000;
--item-active-background: #000;
--top-bar-background: #000;
--guide-background: #000;
--thumbnail-background: #000;
--channel-info-background: #000;
--channel-contents-background: #000;
2022-07-07 09:57:43 -04:00
}
2023-02-02 14:25:42 -05:00
.tags.rec {
font-weight: 600;
font-stretch: expanded;
overflow:hidden;
width: auto;
max-width: fit-content;
margin-right: auto;
padding-left: 1.5em;
margin-top: 7px;
display: flex;
gap: 3px;
}
.tags.rec:hover{
overflow-x:auto;
}
.tags.rec > .tag {
border-radius: 8px;
}
.tag {
background: #333;
padding: 5px;
border-radius: 4px;
2023-09-22 11:20:31 -04:00
border-radius: 8px;
2023-02-02 14:25:42 -05:00
word-break: break-all;
white-space: nowrap;
font-family: ubuntu, sans-serif;
}
2022-07-07 09:57:43 -04:00
2022-09-21 03:36:33 -04:00
</style>
<!-- STYLES START -->
2022-08-27 09:23:46 -04:00
<style>
a.class:hover {
2023-02-02 14:11:47 -05:00
text-decoration:none;
2022-08-27 09:23:46 -04:00
font-weight:bold
2022-09-21 03:36:33 -04:00
}
summary{
color:gray;
}
summary:hover{
2022-08-27 09:23:46 -04:00
color:white;
}
2022-09-21 03:36:33 -04:00
:visited { color: #00c0ff }
2022-08-27 09:23:46 -04:00
2022-09-21 03:36:33 -04:00
a{
2022-08-27 09:23:46 -04:00
color:#0ab7f0;
2022-09-21 03:36:33 -04:00
}
2022-09-21 04:50:55 -04:00
2022-12-10 02:47:02 -05:00
.community {
display: flex;
flex-direction: column;
align-items: center;
border-radius: 30px;
padding: 10px;
padding-bottom: 10px;
width: fit-content;
margin-top: 12px;
margin-left: auto;
margin-right: auto;
padding-bottom: 32px;
}
.community-content {
margin-bottom: 1em;
margin-top: 1em;
padding: 13px;
text-align: left;
background: #111;
width:50.562em;
border-radius: 22px;
}
.community-attachment-video {
}
.comments-author {
margin: 7px;
margin-top: -2px;
font-family: inter;
white-space: -moz-pre-wrap !important;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
white-space: pre-wrap;
word-wrap: anywhere;
white-space: -webkit-pre-wrap;
word-break: break-all;
white-space: normal;
}
2022-12-09 12:12:21 -05:00
.video-grid > .video {
border-radius: 16px;
background: black;
padding: 6px;
border: #333 solid;
}
.subscribe-button {
background-color: white !important;
color: black !important;
text-transform: none !important;
font-weight: bold !important;
padding: 0px 15px !important;
border: none !important;
margin: auto !important;
height: 37px !important;
border-radius: 34px !important;
}
.subs {
2022-12-09 14:05:09 -05:00
margin: 0.6em;text-align: left;margin-left: 0px;margin-top: -1em;font-family: "PokeTube flex";font-weight: 1000;font-stretch: ultra-expanded;
2022-12-09 12:12:21 -05:00
}
2023-02-02 14:11:47 -05:00
.tag.c:hover {
background: var(--chip-background-hover);
}
2022-09-21 03:36:33 -04:00
</style>
2022-09-24 04:21:13 -04:00
<!-- STYLES START -->
<style>
a.class:hover {
text-decoration:underline;
font-weight:bold
}
summary{
color:gray;
}
summary:hover{
color:white;
}
:visited { color: #00c0ff }
a{
color:#0ab7f0;
}
</style>
2022-08-27 09:23:46 -04:00
2022-09-21 03:36:33 -04:00
<link href=/css/app-cdn.min.css rel=stylesheet>
2023-12-14 14:18:21 -05:00
<link href=/css/app.main.css?v=44599 rel=stylesheet>
2022-09-21 03:36:33 -04:00
<link href="/css/watch.main.css?v=56" rel=stylesheet>
<link href="/css/watch-util.css" rel=stylesheet>
2022-09-24 05:08:56 -04:00
2023-04-06 16:16:24 -04:00
2022-09-21 03:36:33 -04:00
<!-- NEW NAVBAR -->
<link href="/css/watch-navbar.css?v=56" rel=stylesheet>
2022-09-24 04:21:13 -04:00
<!-- STYLES END -->
2022-09-27 10:59:18 -04:00
<link href=https://p.poketube.fun/https://site-assets.fontawesome.com/releases/v6.1.1/css/all.css rel=stylesheet>
2022-09-24 04:21:13 -04:00
2022-09-21 04:50:55 -04:00
<style>section p {
2022-12-10 02:47:02 -05:00
2022-09-21 04:50:55 -04:00
font-family:Whitney, Helvetica Neue, Helvetica, Arial, sans-serif;
font-weight:400;
color:#fff;
font-size:16px;
line-height:24px;
margin-top:12px
2022-09-23 09:30:50 -04:00
}
.sticky-top {
position: sticky;
top: 0px;
z-index: 999;
}
.responsive {
width: 100%;
overflow-x: auto;
}
.tabs {
display: table;
font-family:inter;
border-collapse: separate;
table-layout: auto;
2023-01-28 13:26:25 -05:00
border-spacing: 4px 0;
2022-09-23 09:30:50 -04:00
}
2023-11-18 14:53:26 -05:00
.tabs.tabs-center {
margin-left: 2em;
margin-top: 3em !important;
font-size: 12px;
font-family: ubuntu;
border-top-right-radius: 11px;
border-top-left-radius: 11px;
background: #333;
2022-09-23 09:30:50 -04:00
}
.tabs.tabs-justify {
width: 100%;
table-layout: fixed;
}
.tabs a.tab {
position: relative;
display: table-cell;
2022-12-10 02:47:02 -05:00
text-transform:uppercase;
2022-09-23 09:30:50 -04:00
transition: all ease 0.3s;
padding: 1em 1.6em;
transform: translate3d(0, 0, 0);
2022-12-10 02:47:02 -05:00
color: #898989;
2022-09-23 09:30:50 -04:00
white-space: nowrap;
cursor: pointer;
}
2023-01-28 13:26:25 -05:00
2022-09-23 09:30:50 -04:00
.tabs a.tab:after {
transition: all 0.3s cubic-bezier(1, 0, 0, 1);
will-change: transform, box-shadow, opacity;
position: absolute;
content: '';
height: 3px;
bottom: 0px;
left: 0px;
right: 0px;
border-radius: 3px 3px 0px 0px;
background: #9fdafd;
box-shadow: 0px 4px 10px 3px rgba(60, 180, 250, .15);
opacity: 0;
transform: scale(0, 1);
}
.tabs a.tab.active {
color: #fff;
}
.tabs a.tab.active:after {
opacity: 1;
transform: scale(1, 1);
2023-01-28 13:26:25 -05:00
}
2022-09-23 09:30:50 -04:00
</style>
2022-09-24 04:21:13 -04:00
<% if(!isMobile) { %>
<style>
2023-02-12 12:47:07 -05:00
.video:hover{
border:solid;
}
2022-12-09 14:05:09 -05:00
.name{
text-align: left;
}
2023-01-28 13:26:25 -05:00
.tabs a.tab:hover {
color: #fff;
2023-02-12 12:47:07 -05:00
border: solid;
2023-01-28 13:26:25 -05:00
text-decoration: none;
background: #333;
border-top-left-radius: 1em;
border-top-right-radius: 1em;
}
2022-12-09 14:05:09 -05:00
.subs {
margin: 0.6em;text-align: left;margin-left: 0px;margin-top: -1em;font-family: "PokeTube flex";font-weight: 1000;font-stretch: ultra-expanded;
}
2022-09-24 04:21:13 -04:00
.video-grid {
display: flex;
flex-wrap: wrap;
row-gap: 40px;
padding: 16px;
max-inline-size: 164ch;
justify-content: space-around;
2022-09-24 07:44:58 -04:00
}
2023-04-06 16:16:24 -04:00
.shr {
color:#ea9999 !important;
}
2022-09-24 07:44:58 -04:00
.channel-page .video-grid {
background-color: black;
}
2022-12-10 02:47:02 -05:00
2022-09-24 04:21:13 -04:00
</style>
<% } %>
<% if (isMobile) { %>
2023-01-09 11:59:19 -05:00
2022-09-23 07:27:53 -04:00
<style>
2023-01-09 11:59:19 -05:00
.community-content{
margin-bottom: 1em;
margin-top: 1em;
padding: 13px;
text-align: left;
background: #1a1a1a;
width: fit-content;
border-radius: 22px;
}
2023-01-28 13:26:25 -05:00
.tabs a.tab:hover {
color: #fff;
text-decoration: none;
}
2023-01-09 11:59:19 -05:00
.community {
display: flex;
flex-direction: column;
align-items: center;
border-radius: 30px;
padding: 10px;
padding-bottom: 10px;
padding-bottom: 10px;
margin-top: 12px;
margin-left: auto;
margin-right: auto;
padding-bottom: 32px;
max-width: 37em;
}
2022-12-09 14:05:09 -05:00
.subscribe-button {
background-color: white !important;
color: black !important;
text-transform: none !important;
font-weight: bold !important;
padding: 0px 15px !important;
border: none !important;
margin: auto !important;
height: 37px !important;
border-radius: 34px !important;
font-stretch: ultra-expanded !important;
font-family: "PokeTube flex";
width: 20em;
}
2022-09-23 07:27:53 -04:00
.video-grid{
justify-content:center;
}
2022-09-24 05:08:56 -04:00
.channel-info{
text-align:center;
}
2022-09-23 07:27:53 -04:00
.sticky-top {
position: sticky;
top: 0px;
z-index: 999;
}
.responsive {
width: 100%;
overflow-x: auto;
}
.tabs {
display: table;
font-family:inter;
border-collapse: separate;
table-layout: auto;
}
.tabs.tabs-center {
margin: auto;
2023-01-09 11:59:19 -05:00
font-size:15px
2022-09-23 07:27:53 -04:00
}
2023-01-28 13:26:25 -05:00
2022-09-23 07:27:53 -04:00
.tabs.tabs-justify {
width: 100%;
table-layout: fixed;
}
.tabs a.tab {
position: relative;
display: table-cell;
2022-12-10 02:47:02 -05:00
text-transform:uppercase;
2022-09-23 07:27:53 -04:00
transition: all ease 0.3s;
padding: 1em 1.6em;
transform: translate3d(0, 0, 0);
color: #fff;
white-space: nowrap;
cursor: pointer;
}
.tabs a.tab:hover {
color: #3cb4fa;
}
.tabs a.tab:after {
transition: all 0.3s cubic-bezier(1, 0, 0, 1);
will-change: transform, box-shadow, opacity;
position: absolute;
content: '';
height: 3px;
bottom: 0px;
left: 0px;
right: 0px;
border-radius: 3px 3px 0px 0px;
background: #9fdafd;
box-shadow: 0px 4px 10px 3px rgba(60, 180, 250, .15);
opacity: 0;
transform: scale(0, 1);
}
.tabs a.tab.active {
color: #fff;
}
.tabs a.tab.active:after {
opacity: 1;
transform: scale(1, 1);
}
2022-09-23 09:04:49 -04:00
body {
background-color:#111
}
2023-04-05 16:26:43 -04:00
2023-01-28 13:26:25 -05:00
.subscribe-button:hover {
text-decoration: none !important;
background: #f2ebeb !important;
cursor: pointer;
}
2022-09-23 07:27:53 -04:00
</style>
<% } %>
2022-08-27 09:23:46 -04:00
<!-- STYLES END -->
2022-12-09 12:12:21 -05:00
</head>
2022-03-07 11:11:05 -05:00
<body>
2022-09-23 09:04:49 -04:00
2022-09-24 04:21:13 -04:00
<% if (!isMobile) { %>
<nav>
2022-09-21 03:36:33 -04:00
<div class="left"><a class="class" href="/143" style=font-family:Inter,sans-serif;color:#fff> <img style="transform: scale(1.3);padding-left:0.9em;width: 8.5em;display: block;margin-left: auto;margin-right: auto;" src="/css/logo.svg?v=5"> </a> </div>
<div class="middle">
2022-09-24 04:21:13 -04:00
<div class="search">
<form action="/search">
<input class="search-bar" autocomplete="on" id="fname" name="query" placeholder="" style="color:#fff;font-family:Inter,sans-serif;border-radius: 8px;" data-ddg-inputtype="identities.firstName">
<button class="btn btn-success" type="submit"><i class="fa-light fa-search"></i></button>
</form>
<img src="https://search-metrics.poketube.fun/t/rep.gif" style="border:0;width: 0;visibility: hidden;">
</div>
2022-09-21 03:36:33 -04:00
<img src="https://search-metrics.poketube.fun/t/rep.gif" style="border:0;width: 0;visibility: hidden;">
</div>
<div class="right">
2022-09-24 04:21:13 -04:00
<a href="/privacy" style="text-decoration: none;" title="Privacy Policy">
2022-09-21 03:36:33 -04:00
<i style="display: block;margin-left: auto;margin-right: auto;" class="fa-light fa-shield"></i>
</a>
2022-09-24 04:21:13 -04:00
<a href="/video/upload" style="text-decoration: none;" title="Upload Video">
2022-09-21 03:36:33 -04:00
<i style="display: block;margin-left: auto;margin-right: auto;" class="fa-light fa-video"></i>
</a>
2022-09-24 04:21:13 -04:00
2022-09-21 03:36:33 -04:00
</div>
</nav>
2022-08-11 20:19:47 -04:00
2022-09-24 04:21:13 -04:00
<% } %>
2022-09-23 09:04:49 -04:00
<% if (isMobile) { %>
<nav style="background-color:#111">
<div class="left">
<i onclick="window.history.back()" style="color:#fff;padding: 10px;" class="fa-solid fa-chevron-left"></i>
2023-09-27 14:20:31 -04:00
<p style="font-family:Ginto Nord,sans-serif;font-weight:900;white-space:yes;"><%=j.Channel?.Metadata.Name%></p>
2022-09-23 09:04:49 -04:00
</div>
2023-12-06 09:23:42 -05:00
<div class="right">
<a href="/app?tab=search" style="position: absolute;right: 0;margin: 2em;" ><i class="fa-light fa-search"></i></a>
</div>
2022-09-23 09:04:49 -04:00
<hr style="clear: both;display: block;border: none;border-bottom: 0.5px solid #2f2f2f;/*! width: 4.5em; */height: 0;">
</nav>
<% } %>
2022-08-11 20:19:47 -04:00
2022-12-09 12:12:21 -05:00
<section class=youtube-video>
<div class="channel-page">
2022-07-01 12:26:34 -04:00
2022-06-24 03:46:29 -04:00
<div class="channel-page">
2022-12-09 14:05:09 -05:00
2022-09-23 07:27:53 -04:00
2022-09-23 09:30:50 -04:00
<% if (!isMobile) { %>
2022-09-24 06:58:09 -04:00
<div class="channel-info-container" style="text-align: center;">
2023-09-27 14:20:31 -04:00
<% if (j?.Channel?.Metadata?.Banners.Thumbnail) { %>
2022-09-21 08:34:25 -04:00
2023-09-27 14:20:31 -04:00
<img src="https://p.poketube.fun/<%=j.Channel?.Metadata.Banners.Thumbnail[2].$t%>">
2022-09-21 08:34:25 -04:00
<% } %>
2022-06-08 13:39:41 -04:00
<div class="channel-info" >
2023-11-24 10:28:58 -05:00
<a href="/avatars/<%=j.Channel?.Metadata.Avatars.Thumbnail?.$t.replace("https://yt3.googleusercontent.com/", "")%>" class="avatar">
2023-11-11 07:04:36 -05:00
<img src="/avatars/<%=j.Channel?.Metadata.Avatars.Thumbnail?.$t.replace("https://yt3.googleusercontent.com/", "")%>" alt="Channel Avatar">
2022-06-08 13:39:41 -04:00
</a>
2023-08-18 12:26:05 -04:00
2023-09-16 00:37:28 -04:00
<% if (cinv?.authorVerified) { %>
2023-08-18 12:26:05 -04:00
<style>
.name {
border:solid 2.1px #df80ff;
}
</style>
<% } %>
2023-11-12 03:38:40 -05:00
<div class="name" style="background: #333;border-radius: 12px;padding: 9px;height: 6em;">
2023-09-27 14:20:31 -04:00
<p style="font-family:PokeTube Flex,sans-serif;font-weight:1000;font-stretch: ultra-expanded;margin-top: 16px;margin-bottom: 15px;"><%=j.Channel?.Metadata.Name%>
2023-08-18 12:26:05 -04:00
<span style="background: #0005;padding: 3px;padding-top: 2.5px !important;display: inline-flex;border-radius: 3px;">
2023-09-27 14:20:31 -04:00
<% if (cinv?.authorVerified) { %>
<% if (cinv?.isFamilyFriendly) { %>
2023-08-18 12:26:05 -04:00
<i class="fa-solid fa-badge-check" style="width: 18px;margin-right:7px" title="Verified Channel"></i>
<% } %>
<% if (!cinv.isFamilyFriendly) { %>
<i class="fa-solid fa-badge-check" style="width: 18px" title="Verified Channel"></i>
2022-12-09 12:12:21 -05:00
2023-08-18 12:26:05 -04:00
<% } %>
<% } %>
2023-09-27 14:20:31 -04:00
<% if (cinv?.isFamilyFriendly) { %>
2023-08-18 12:26:05 -04:00
<img src="https://cdn.glitch.global/d68d17bb-f2c0-4bc3-993f-50902734f652/bbf42a35-8976-43a5-a7a2-72a81d9da7ce.image.png?v=1692301199470" style="width: 18px;" title="In Youtube kids" >
<% } %>
</span> </p>
<p style="margin-bottom: -11px;" class="subs"><%=subs%> subscribers</p>
<p style="padding:0;font-weight:bold;max-inline-size: 37em;display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;">
2023-09-27 14:20:31 -04:00
<% try { %>
<%- getFirstLine(cinv.description).slice(0, 60) %>
2023-09-27 14:20:31 -04:00
<a href="/channel?id=<%= ID %>&tab=about">
<% } catch (error) { %>
<!-- Handle the error here, if it occurs -->
<p>Error: <%= error.message %></p>
<% } %>
2023-11-12 03:38:40 -05:00
<i class="fa-thin fa-angle-right"></i></a><br><button class="subscribe-button " style="text-decoration: none;margin-right:3px !important;"> <a style="color: black;
white-space: nowrap;text-decoration: none;" id="sub">Suscribe</a></button><button class="subscribe-button " style="text-decoration: none;"> <a style="color: black;
white-space: nowrap;text-decoration: none;" href="/feeds/videos.xml?channel_id=<%=ID%>">Rss feed </a></button>
2023-08-18 12:26:05 -04:00
</p>
2023-11-12 03:38:40 -05:00
2022-06-08 13:39:41 -04:00
</div>
2023-11-12 03:38:40 -05:00
2022-12-10 02:47:02 -05:00
2022-06-08 13:39:41 -04:00
</div>
2022-12-10 02:47:02 -05:00
<% if (!isMobile) { %>
2023-11-24 10:28:58 -05:00
<div style="display: flex;
flex-direction: row;">
<div class="tabs tabs-center" style="margin-top: 26px;">
2023-11-12 03:38:40 -05:00
<% if (!tab) { %>
2022-12-09 12:12:21 -05:00
2023-04-06 16:16:24 -04:00
<a href="/channel?id=<%=ID%>" class="tab active" style="color:#cfe2f3;">Videos</a>
2023-02-05 03:42:44 -05:00
2023-06-04 08:34:19 -04:00
<% if (Array.isArray(shorts?.videos)) { %>
2023-02-05 10:49:37 -05:00
<% if (shorts.videos[0]) { %>
2023-02-05 03:42:44 -05:00
<% if (turntomins(shorts.videos[0].lengthSeconds) != "aN:aN" ) { %>
2023-02-04 16:57:13 -05:00
2023-02-05 10:49:37 -05:00
2023-04-06 16:16:24 -04:00
<a href="/channel?id=<%=ID%>&tab=shorts" class="tab shr">Shorts</a>
2023-02-04 16:57:13 -05:00
<% } %>
2023-02-05 10:49:37 -05:00
<% } %>
2023-02-05 03:42:44 -05:00
<% } %>
2023-06-04 08:34:19 -04:00
<% if (Array.isArray(stream?.videos)) { %>
2023-02-05 10:49:37 -05:00
<% if (stream.videos[0]) { %>
2023-02-05 03:42:44 -05:00
<% if (turntomins(stream.videos[0].lengthSeconds) != "aN:aN" ) { %>
2023-02-04 16:57:13 -05:00
2023-04-06 16:16:24 -04:00
<a href="/channel?id=<%=ID%>&tab=live" class="tab" style="color:#d9ead3;">Live</a>
2023-02-04 16:57:13 -05:00
<% } %>
2023-02-05 10:49:37 -05:00
<% } %>
2023-02-05 03:42:44 -05:00
<% } %>
2023-08-08 15:26:22 -04:00
<% if (Array.isArray(c?.comments)) { %>
2022-12-10 06:08:15 -05:00
2022-12-10 03:07:03 -05:00
<% if (c.comments.length != "0") { %>
2022-12-10 02:47:02 -05:00
2023-04-06 16:16:24 -04:00
<a href="/channel?id=<%=ID%>&tab=community" class="tab" style="color:pink">Community</a>
2022-12-10 06:08:15 -05:00
<% } %>
<% } %>
2022-12-10 02:47:02 -05:00
2023-11-18 14:53:26 -05:00
<% } %>
2022-12-10 02:47:02 -05:00
<% if (tab === "about") { %>
2022-12-09 12:12:21 -05:00
2023-04-06 16:16:24 -04:00
<a href="/channel?id=<%=ID%>" class="tab" style="color:#cfe2f3;">Videos</a>
2023-06-04 08:34:19 -04:00
<% if (Array.isArray(shorts?.videos)) { %>
2023-02-17 16:19:16 -05:00
<% if (shorts.videos[0]) { %>
2023-02-05 03:42:44 -05:00
<% if (turntomins(shorts.videos[0].lengthSeconds) != "aN:aN" ) { %>
2023-02-04 16:57:13 -05:00
2023-04-06 16:16:24 -04:00
<a href="/channel?id=<%=ID%>&tab=shorts" class="tab shr">Shorts</a>
2023-02-04 16:57:13 -05:00
<% } %>
2023-02-17 16:19:16 -05:00
<% } %>
2023-02-05 03:42:44 -05:00
<% } %>
2023-02-04 16:57:13 -05:00
2023-09-27 14:20:31 -04:00
<% if (Array?.isArray(stream?.videos)) { %>
<% if (stream?.videos[0]) { %>
<% if (turntomins(stream?.videos[0]?.lengthSeconds) != "aN:aN" ) { %>
2023-02-17 16:19:16 -05:00
2023-02-05 03:42:44 -05:00
2023-04-06 16:16:24 -04:00
<a href="/channel?id=<%=ID%>&tab=live" class="tab" style="color:#d9ead3;">Live</a>
2023-02-04 16:57:13 -05:00
<% } %>
2023-02-05 03:42:44 -05:00
<% } %>
2023-02-17 16:19:16 -05:00
<% } %>
2023-02-05 03:42:44 -05:00
2023-09-27 14:20:31 -04:00
<% if (Array?.isArray(c?.comments)) { %>
2022-12-10 06:08:15 -05:00
2023-09-27 14:20:31 -04:00
<% if (c?.comments?.length != "0") { %>
2022-12-10 02:47:02 -05:00
2023-04-06 16:16:24 -04:00
<a href="/channel?id=<%=ID%>&tab=community" class="tab" style="color:pink">Community</a>
2023-02-17 16:19:16 -05:00
<% } %>
<% } %>
2022-12-10 02:47:02 -05:00
2023-11-18 14:53:26 -05:00
<% } %>
2022-12-10 02:47:02 -05:00
<% if (tab === "community") { %>
2023-04-06 16:16:24 -04:00
<a href="/channel?id=<%=ID%>" class="tab" style="color:#cfe2f3;">Videos</a>
2023-09-27 14:20:31 -04:00
<% if (Array?.isArray(shorts?.videos)) { %>
<% if (turntomins(shorts?.videos[0]?.lengthSeconds) != "aN:aN" ) { %>
2023-02-04 16:57:13 -05:00
2023-04-06 16:16:24 -04:00
<a href="/channel?id=<%=ID%>&tab=shorts" class="tab shr">Shorts</a>
2023-02-04 16:57:13 -05:00
<% } %>
2023-02-05 03:42:44 -05:00
<% } %>
2023-09-27 14:20:31 -04:00
<% if (Array?.isArray(stream?.videos)) { %>
<% if (stream?.videos[0]) { %>
2023-03-21 15:31:04 -04:00
2023-09-27 14:20:31 -04:00
<% if (turntomins(stream?.videos[0]?.lengthSeconds) != "aN:aN" ) { %>
2023-02-04 16:57:13 -05:00
2023-04-06 16:16:24 -04:00
<a href="/channel?id=<%=ID%>&tab=live" class="tab" style="color:#d9ead3;">Live</a>
2023-02-04 16:57:13 -05:00
<% } %>
2023-02-05 03:42:44 -05:00
<% } %>
2023-03-21 15:31:04 -04:00
<% } %>
2023-04-06 16:16:24 -04:00
<a href="/channel?id=<%=ID%>&tab=community" class="tab active" style="color:pink">Community</a>
2022-12-10 02:47:02 -05:00
2023-11-18 14:53:26 -05:00
<% } %>
2022-12-09 12:12:21 -05:00
2023-02-04 16:57:13 -05:00
<% if (tab === "shorts") { %>
2023-04-06 16:16:24 -04:00
<a href="/channel?id=<%=ID%>" class="tab" style="color:#cfe2f3;">Videos</a>
2023-09-27 14:20:31 -04:00
<% if (Array?.isArray(shorts?.videos)) { %>
2023-02-04 16:57:13 -05:00
2023-04-06 16:16:24 -04:00
<a href="/channel?id=<%=ID%>&tab=shorts" class="tab active shr">Shorts</a>
2023-02-04 16:57:13 -05:00
<% } %>
2023-09-27 14:20:31 -04:00
<% if (Array?.isArray(stream?.videos)) { %>
<% if (stream?.videos[0]) { %>
<% if (turntomins(stream?.videos[0]?.lengthSeconds) != "aN:aN" ) { %>
2023-02-04 16:57:13 -05:00
2023-04-06 16:16:24 -04:00
<a href="/channel?id=<%=ID%>&tab=live" class="tab" style="color:#d9ead3;">Live</a>
2023-02-04 16:57:13 -05:00
<% } %>
2023-02-05 03:42:44 -05:00
<% } %>
2023-02-17 16:19:16 -05:00
<% } %>
2023-02-05 03:42:44 -05:00
2023-09-27 14:20:31 -04:00
<% if (Array?.isArray(c?.comments)) { %>
2023-02-04 16:57:13 -05:00
2023-09-27 14:20:31 -04:00
<% if (c?.comments?.length != "0") { %>
2023-02-04 16:57:13 -05:00
2023-04-06 16:16:24 -04:00
<a href="/channel?id=<%=ID%>&tab=community" class="tab" style="color:pink">Community</a>
2023-02-04 16:57:13 -05:00
<% } %>
<% } %>
2023-11-18 14:53:26 -05:00
<% } %>
2023-02-04 16:57:13 -05:00
<% if (tab === "live") { %>
2023-04-06 16:16:24 -04:00
<a href="/channel?id=<%=ID%>" class="tab" style="color:#cfe2f3;">Videos</a>
2023-09-27 14:20:31 -04:00
<% if (Array?.isArray(shorts?.videos)) { %>
2023-02-05 10:49:37 -05:00
2023-09-27 14:20:31 -04:00
<% if (turntomins(shorts?.videos[0]?.lengthSeconds) != "aN:aN" ) { %>
2023-02-04 16:57:13 -05:00
2023-04-06 16:16:24 -04:00
<a href="/channel?id=<%=ID%>&tab=shorts" class="tab shr">Shorts</a>
2023-02-04 16:57:13 -05:00
<% } %>
2023-02-05 03:42:44 -05:00
<% } %>
2023-09-27 14:20:31 -04:00
<% if (Array?.isArray(stream?.videos)) { %>
2023-02-04 16:57:13 -05:00
2023-04-06 16:16:24 -04:00
<a href="/channel?id=<%=ID%>&tab=live" class="tab active" style="color:#d9ead3;">Live</a>
2023-02-04 16:57:13 -05:00
<% } %>
2023-09-27 14:20:31 -04:00
<% if (Array?.isArray(c?.comments)) { %>
2023-02-04 16:57:13 -05:00
2023-09-27 14:20:31 -04:00
<% if (c?.comments?.length != "0") { %>
2023-02-04 16:57:13 -05:00
2023-04-06 16:16:24 -04:00
<a href="/channel?id=<%=ID%>&tab=community" class="tab" style="color:pink">Community</a>
2023-02-04 16:57:13 -05:00
<% } %>
<% } %>
2023-11-18 14:53:26 -05:00
<% } %>
2022-10-11 10:41:42 -04:00
</div>
2023-12-13 00:21:46 -05:00
<input type="text" id="search" placeholder="Search :3" style="margin-top: 2em;height: 1em;color: #fff;background: #111;border-radius: 1em;padding: 7px;margin-left: auto;margin-right: 1em;"> </div>
2022-10-11 10:41:42 -04:00
<% } %>
2022-12-10 02:47:02 -05:00
2022-09-21 03:36:33 -04:00
</div>
2022-09-23 07:27:53 -04:00
<% } %>
<% if (isMobile) { %>
2022-09-24 06:58:09 -04:00
<div class="channel-info-container" style="text-align: center;">
2023-09-27 14:20:31 -04:00
<% if (j.Channel?.Metadata.Banners.Thumbnail) { %>
2022-09-23 07:27:53 -04:00
2023-09-27 14:20:31 -04:00
<img src="https://p.poketube.fun/<%=j.Channel?.Metadata.Banners.Thumbnail[3].$t%>">
2022-09-23 09:30:50 -04:00
<% } %>
2022-12-09 14:05:09 -05:00
<div class="channel-info" style="display: flex;
padding-bottom: 0;
font-weight: bold;
justify-content: center;
flex-direction: column;
gap: 0px;
margin: auto;">
<a href="/channel?id=<%=ID%>" class="avatar" style="height: 6em;
display: flex;
flex-direction: column;
align-content: center;
margin: auto;
2023-01-09 11:59:19 -05:00
width: fit-content;
2022-12-09 14:05:09 -05:00
">
2023-09-27 14:20:31 -04:00
<img src="https://p.poketube.fun/<%=j.Channel?.Metadata.Avatars.Thumbnail.$t%>" alt="Channel Avatar">
2022-09-23 07:27:53 -04:00
</a>
<div class="name">
2023-09-27 14:20:31 -04:00
<p style="font-family:PokeTube Flex,sans-serif;font-weight:1000;font-stretch: ultra-expanded;white-space:yes;"><%=j.Channel?.Metadata.Name%> </p>
2023-01-09 11:59:19 -05:00
<p style="margin: -9px;">
<%=subs%> subscribers
</p>
2022-09-23 07:27:53 -04:00
</div>
<p style="padding:0;font-weight:bold;">
<%-getFirstLine(cinv.description)%> <a href="/channel?id=<%=ID%>&tab=about">
2022-09-23 07:27:53 -04:00
<i class="fa-thin fa-angle-right"></i></a>
</p>
2023-01-09 11:59:19 -05:00
<a href="/feeds/videos.xml?channel_id=<%=ID%>"><button class="subscribe-button">Rss feed</button>
</a>
2022-12-09 14:05:09 -05:00
2023-11-24 10:28:58 -05:00
2022-12-09 14:05:09 -05:00
<% if (isMobile) { %>
<div style="text-align: center;padding: 3px;margin-top: 0px;">
2023-11-16 02:39:08 -05:00
<div class="tabs tabs-center" style="overflow: scroll;width: 7em;font-size: 10px;margin-left: -1px;font-family: poketube flex !important;font-weight: 800 !important;font-stretch: ultra-expanded;">
<% if (!tab) { %>
2022-12-09 14:05:09 -05:00
2023-11-16 02:39:08 -05:00
<a href="/channel?id=<%=ID%>" class="tab active">Videos</a>
2023-12-06 09:23:42 -05:00
<% if (turntomins(shorts?.videos[0]?.lengthSeconds) != "aN:aN" ) { %>
<a href="/channel?id=<%=ID%>&tab=shorts" class="tab">Shorts</a>
<% } %>
2023-01-09 11:59:19 -05:00
<% if (Array.isArray(c.comments)) { %>
<% if (c.comments.length != "0") { %>
<a href="/channel?id=<%=ID%>&tab=community" class="tab">Community</a>
<% } %>
<% } %>
2023-11-16 02:39:08 -05:00
<% if (Array?.isArray(shorts?.videos)) { %>
<% } %>
2023-11-18 14:53:26 -05:00
<% } %>
2023-01-09 11:59:19 -05:00
<% if (tab ==="about") { %>
2023-12-06 09:23:42 -05:00
<a href="/channel?id=<%=ID%>" class="tab">Videos</a>
<% if (Array?.isArray(shorts?.videos)) { %>
2023-11-16 02:39:08 -05:00
<% if (turntomins(shorts?.videos[0]?.lengthSeconds) != "aN:aN" ) { %>
2022-12-09 14:05:09 -05:00
2023-11-16 02:39:08 -05:00
<a href="/channel?id=<%=ID%>&tab=shorts" class="tab">Shorts</a>
<% } %>
<% } %>
2023-01-09 11:59:19 -05:00
<a href="/channel?id=<%=ID%>&tab=community" class="tab">Community</a>
2023-11-18 14:53:26 -05:00
<% } %>
2023-01-09 11:59:19 -05:00
<% if (tab ==="community") { %>
2023-11-16 02:39:08 -05:00
<a href="/channel?id=<%=ID%>" class="tab">Videos</a>
<% if (Array?.isArray(shorts?.videos)) { %>
<% if (turntomins(shorts?.videos[0]?.lengthSeconds) != "aN:aN" ) { %>
<a href="/channel?id=<%=ID%>&tab=shorts" class="tab">Shorts</a>
<% } %>
<% } %>
2023-01-09 11:59:19 -05:00
<a href="/channel?id=<%=ID%>&tab=community" class="tab active">Community</a>
2023-11-18 14:53:26 -05:00
<% } %>
2023-11-16 02:39:08 -05:00
<% if (tab ==="shorts") { %>
<a href="/channel?id=<%=ID%>" class="tab">Videos</a>
<% if (Array?.isArray(shorts?.videos)) { %>
<% if (turntomins(shorts?.videos[0]?.lengthSeconds) != "aN:aN" ) { %>
2022-09-23 09:30:50 -04:00
2023-11-16 02:39:08 -05:00
<a href="/channel?id=<%=ID%>&tab=shorts" class="tab active">Shorts</a>
<% } %>
<% } %>
<a href="/channel?id=<%=ID%>&tab=community" class="tab">Community</a>
2023-11-18 14:53:26 -05:00
<% } %>
2022-12-09 14:05:09 -05:00
</div>
</a>
</a>
</div>
</div>
<% } %>
2022-09-23 07:27:53 -04:00
</div>
2022-10-11 10:41:42 -04:00
2022-09-23 07:27:53 -04:00
</div>
2022-11-03 12:44:30 -04:00
2022-09-23 07:27:53 -04:00
<% } %>
2022-11-06 10:14:39 -05:00
2022-12-09 12:12:21 -05:00
<hr style="clear: both;display: block;border: none;border-bottom: 0.5px solid #2f2f2f;margin: 0 0;/*! width: 4.5em; */height: 0;">
<% if (!tab) { %>
2023-02-02 14:11:47 -05:00
2022-12-09 12:12:21 -05:00
<div align="center">
2023-02-02 14:11:47 -05:00
<% if (!isMobile) { %>
<div class="tags rec">
2023-03-27 15:53:00 -04:00
<% if (sort == "newest") { %>
2023-02-02 14:11:47 -05:00
<a class="tag" style="background:var(--chip-background-hover)">
Recently Uploaded
2023-02-10 05:34:36 -05:00
</a>
2023-03-27 15:53:00 -04:00
2023-02-02 14:11:47 -05:00
<a href="/channel?id=<%=ID%>&sort_by=popular" style="color:#fff;text-decoration:none;
" class="tag c">
Popular
</a>
2023-02-10 05:34:36 -05:00
2023-09-09 12:42:34 -04:00
<a href="/channel?id=<%=ID%>&sort_by=oldest" style="color:#fff;text-decoration:none;
" class="tag c">
Oldest
</a>
2023-02-02 14:11:47 -05:00
<% } %>
<% if (sort) { %>
2023-09-09 12:42:34 -04:00
<% if (sort === "popular") { %>
2023-03-27 15:53:00 -04:00
2023-02-02 14:11:47 -05:00
<a href="/channel?id=<%=ID%>" style="color:#fff;text-decoration:none;
" class="tag c" >
Recently Uploaded
</a>
<a style="background:var(--chip-background-hover)" class="tag">
Popular
2023-09-09 12:42:34 -04:00
</a>
<a href="/channel?id=<%=ID%>&sort_by=oldest" style="color:#fff;text-decoration:none;
" class="tag c">
Oldest
</a>
<% } %>
<% if (sort === "oldest") { %>
<a href="/channel?id=<%=ID%>" style="color:#fff;text-decoration:none;
" class="tag c" >
Recently Uploaded
</a>
<a href="/channel?id=<%=ID%>&sort_by=popular" style="color:#fff;text-decoration:none;
" class="tag">
Popular
</a>
<a style="background:var(--chip-background-hover)
" class="tag c">
Oldest
2023-02-02 14:11:47 -05:00
</a>
2023-03-27 15:53:00 -04:00
<% } %>
2023-09-09 12:42:34 -04:00
2023-02-02 14:11:47 -05:00
<% } %>
</div>
<% } %>
2022-12-09 12:12:21 -05:00
2023-09-10 14:04:48 -04:00
<% if (isMobile) { %>
<details style="color:#fff;background:#0f0f0f">
<summary style="color:#fff;text-align: left;margin-left: 5px;">Sort by</summary>
<div class="tags rec" style="background:#0f0f0f;margin-left: auto;">
<% if (sort == "newest") { %>
<a class="tag" style="background:var(--chip-background-hover)">
Recently Uploaded
</a>
<a href="/channel?id=<%=ID%>&sort_by=popular" style="color:#fff;text-decoration:none;
" class="tag c">
Popular
</a>
<a href="/channel?id=<%=ID%>&sort_by=oldest" style="color:#fff;text-decoration:none;
" class="tag c">
Oldest
</a>
<% } %>
<% if (sort) { %>
<% if (sort === "popular") { %>
<a href="/channel?id=<%=ID%>" style="color:#fff;text-decoration:none;
" class="tag c" >
Recently Uploaded
</a>
<a style="background:var(--chip-background-hover)" class="tag">
Popular
</a>
<a href="/channel?id=<%=ID%>&sort_by=oldest" style="color:#fff;text-decoration:none;
" class="tag c">
Oldest
</a>
<% } %>
<% if (sort === "oldest") { %>
<a href="/channel?id=<%=ID%>" style="color:#fff;text-decoration:none;
" class="tag c" >
Recently Uploaded
</a>
<a href="/channel?id=<%=ID%>&sort_by=popular" style="color:#fff;text-decoration:none;
" class="tag">
Popular
</a>
<a style="background:var(--chip-background-hover)
" class="tag c">
Oldest
</a>
<% } %>
<% } %>
</details>
</div>
<% } %>
2022-12-09 12:12:21 -05:00
<div class="video-grid" >
2023-02-02 14:11:47 -05:00
2023-08-08 15:26:22 -04:00
<% if (Array.isArray( tj?.videos)) { %>
2022-12-09 12:12:21 -05:00
2023-02-02 14:11:47 -05:00
<% tj.videos.forEach (x => { %>
2022-12-09 12:12:21 -05:00
<a href="/watch?v=<%- x.videoId %>" class="video">
2023-12-14 05:19:33 -05:00
<div class="thumbnail" style="background-image: url('<%- media_proxy_url %>/proxy?url=https://vid.puffyan.us/vi/<%= x.videoId %>/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLBy_x4UUHLNDZtJtH0PXeQGoRFTgw');border-radius: 10px;"><span class="video-length"><%- turntomins(x.lengthSeconds) %></span></div>
2022-12-09 12:12:21 -05:00
<div class="info">
<span class="title max-lines-2" style="font-family:PokeTube flex,sans-serif;font-weight: 1000;font-stretch: ultra-expanded;"><%- x.title %></span>
</div>
</a>
<% }) %>
2022-12-10 02:47:02 -05:00
<% } %>
2022-12-09 12:12:21 -05:00
2022-12-10 02:47:02 -05:00
2022-12-09 12:12:21 -05:00
</div>
2022-12-10 02:47:02 -05:00
2023-08-08 15:26:22 -04:00
<% if (tj?.continuation) { %>
2023-02-02 14:11:47 -05:00
<div class="pagination-buttons" style="border-top: none;justify-content: center">
<a style="color:#fff" href="/channel?id=<%=ID%>&continuation=<%=tj.continuation%>">Next Page</a>
</div>
<% } %>
2022-12-10 02:47:02 -05:00
<% } %>
2023-02-04 16:57:13 -05:00
<% if (tab === "shorts") { %>
<div align="center">
<% if (!isMobile) { %>
</div>
<% } %>
<div class="shorts-video-grid">
<% if (Array?.isArray( shorts.videos)) { %>
<% shorts.videos.forEach (x => { %>
<a href="/shorts/<%- x.videoId %>" class="shorts-video" >
2023-12-14 05:19:33 -05:00
<img load="lazy" src='<%- media_proxy_url %>/proxy?url=https://vid.puffyan.us/vi/<%= x.videoId %>/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLBy_x4UUHLNDZtJtH0PXeQGoRFTgw'>
<span class="shorts-title"><%- x.title %></span>
</a>
<% }) %>
<% } %>
</div>
<% if (shorts?.continuation) { %>
<div class="pagination-buttons">
<a style="color:#fff" href="/channel?id=<%=ID%>&tab=shorts&continuations=<%=shorts.continuation%>">Next Page</a>
</div>
<% } %>
<style>
.shorts-video-grid {
max-width: 1200px;
margin: auto;
display: grid;
grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
grid-gap: 24px;
margin-top: 24px;
}
.shorts-video img {
width: 100%;
aspect-ratio: 9/16;
object-fit: cover;
border-radius: 10px;
}
.shorts-video {
display: block;
}
</style>
<% } %>
2023-02-04 16:57:13 -05:00
<% if (tab === "live") { %>
<div align="center">
<% if (isMobile) { %>
<div class="tags rec">
<% if (!sort) { %>
<a class="tag" style="background:var(--chip-background-hover)">
Recently Uploaded
</a>
<a href="/channel?id=<%=ID%>&sort_by=popular&tab=live" style="color:#fff;text-decoration:none;
" class="tag c">
Popular
</a>
<% } %>
<% if (sort) { %>
<a href="/channel?id=<%=ID%>&tab=live" style="color:#fff;text-decoration:none;
" class="tag c" >
Recently Uploaded
</a>
<a style="background:var(--chip-background-hover)" class="tag">
Popular
</a>
<% } %>
</div>
</div>
<% } %>
<div class="video-grid" >
<% if (Array.isArray( stream.videos)) { %>
<% stream.videos.forEach (x => { %>
<a href="/watch?v=<%- x.videoId %>" class="video">
2023-12-14 05:19:33 -05:00
<div class="thumbnail" style="background-image: url('<%- media_proxy_url %>/proxy?url=https://vid.puffyan.us/vi/<%= x.videoId %>/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLBy_x4UUHLNDZtJtH0PXeQGoRFTgw');border-radius: 10px;"><span class="video-length"><%- turntomins(x.lengthSeconds) %></span></div>
2023-02-04 16:57:13 -05:00
<div class="info">
<span class="title max-lines-2" style="font-family:PokeTube flex,sans-serif;font-weight: 1000;font-stretch: ultra-expanded;"><%- x.title %></span>
</div>
</a>
<% }) %>
<% } %>
</div>
2023-09-27 14:20:31 -04:00
<% if (stream?.continuation) { %>
2023-02-04 16:57:13 -05:00
<div class="pagination-buttons" style="border-top: none;justify-content: center">
2023-09-27 14:20:31 -04:00
<a style="color:#fff" href="/channel?id=<%=ID%>&tab=live&continuationl=<%=stream?.continuation%>">Next Page</a>
2023-02-04 16:57:13 -05:00
</div>
<% } %>
<% } %>
2022-12-10 02:47:02 -05:00
<% if (tab === "community") { %>
2023-09-27 14:20:31 -04:00
<% if (Array?.isArray( c?.comments)) { %>
2022-12-10 02:47:02 -05:00
<div class="community">
2023-09-27 14:20:31 -04:00
<% c?.comments?.forEach (x => { %>
2022-12-10 02:47:02 -05:00
<div class="community-content">
2022-12-09 12:12:21 -05:00
2022-12-10 02:47:02 -05:00
<h5 style="display: flex;margin-top: -1em;padding-top: 10px;margin-bottom:10px"><div class="thumb">
<a href="/channel?id=UC0n83khlA76NRfDfm7BNtkQ" class="avatar" style="width: 40px;height: 40px;">
2023-09-27 14:20:31 -04:00
<img src="https://p.poketube.fun/<%=j.Channel?.Metadata.Avatars.Thumbnail.$t%>">
2022-12-10 02:47:02 -05:00
</a>
</div>
2022-12-09 12:12:21 -05:00
2022-12-10 02:47:02 -05:00
<p class="comments-author">
2023-09-27 14:20:31 -04:00
<a href="" style="color: var(--text-color);text-decoration: none;"><%=j.Channel?.Metadata.Name%>
2022-12-09 12:12:21 -05:00
2022-12-10 02:47:02 -05:00
</a>
<span>
<br> <%- x.publishedText %> - <span>
<%- convert(x.likeCount) %> likes
</span>
2022-12-09 12:12:21 -05:00
2022-12-10 02:47:02 -05:00
</span>
2022-12-09 12:12:21 -05:00
2022-12-10 02:47:02 -05:00
2022-12-09 12:12:21 -05:00
2022-12-10 02:47:02 -05:00
</p>
2022-12-09 12:12:21 -05:00
2022-12-10 02:47:02 -05:00
</h5>
<p>
<%- x.contentHtml %>
2022-12-09 12:12:21 -05:00
2022-12-10 02:47:02 -05:00
</p>
<% if (x.attachment) { %>
<% if (x.attachment.type === "video") { %>
<div class="video-player-container">
<video class="player" style="border-radius: 16px;
" controls
2023-12-14 05:19:33 -05:00
poster="<%- media_proxy_url %>/proxy?url=https://vid.puffyan.us/vi/<%=x.attachment.videoId%>/maxresdefault.jpg?v=607ddcd4">
2022-12-10 02:47:02 -05:00
2022-12-09 12:12:21 -05:00
2022-12-10 02:47:02 -05:00
<source src="https://tube.kuylar.dev/proxy/media/<%=x.attachment.videoId%>/22" type="video/mp4; codecs=&quot;avc1.64001F, mp4a.40.2&quot;" label="hd720" selected="false">
</video>
</div>
<% } %>
<% if (x.attachment.type === "image") { %>
<% if (x.attachment.imageThumbnails[4] ) { %>
<img style=" width: 100%;
2023-12-14 05:19:33 -05:00
border-radius: 26px;" src="<%- media_proxy_url %>/proxy?url=<%- x.attachment.imageThumbnails[4].url%>">
2022-12-10 02:47:02 -05:00
<% } %> <% } %>
<% } %>
</div>
<% }) %>
<% } %> <% } %>
2022-12-09 12:12:21 -05:00
2022-12-10 02:47:02 -05:00
2022-12-09 12:12:21 -05:00
<% if (tab === "about") { %>
<div style="text-align: left;">
<h3 style="color:#fff;font-family:Ginto Nord,sans-serif;font-weight:900;padding: 0px;margin: 0;margin-top: 7px;margin-left: 10px;">About</h3>
2022-09-21 08:34:25 -04:00
2022-09-21 05:52:41 -04:00
2023-11-11 07:08:36 -05:00
<% if (cinv.descriptionHtml) { %>
2022-09-21 05:52:41 -04:00
<p style="color:#fff;margin-left: 10px;font-weight: bold;"><%-cinv.descriptionHtml%></p>
2022-09-21 05:52:41 -04:00
<% } %>
2022-09-21 04:50:55 -04:00
<% if (wiki.extract_html) { %>
2022-12-09 12:12:21 -05:00
<h3 style="color:#fff;font-family:Ginto Nord,sans-serif;font-weight:900;padding: 0px;margin: 0;margin-top: 7px;margin-left: 10px;">From the web</h3>
2022-09-21 04:50:55 -04:00
<div style="color:#fff;margin-left: 10px;">
<p style="color:#fff:font-weight: bold;">
<%-wiki.extract_html%> </p>
</div>
<div style="color:#fff;margin-left: 10px;">
<p style="margin-bottom: 10px;">
<a href=" <%-wiki.content_urls.desktop.page%>
">From wikipedia </a> under CC-BY-SA 3.0
</p>
</div>
</p>
<% } %>
<div style="font-weight: bold;color:#fff;margin-left: 10px;">
YouTube removed the about tab ;_; fix for this soon lol
2022-12-09 12:12:21 -05:00
</div>
</div>
<% } %>
2023-02-22 10:53:27 -05:00
<script src="/css/custom-css.js"> </script>
2023-08-18 12:26:05 -04:00
<script>
2023-11-24 10:28:58 -05:00
// @license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-3.0-or-later
2023-11-12 03:38:40 -05:00
var anchor = document.getElementById("sub");
// Check if there's a user ID in localStorage
var userID = localStorage.getItem("UserID");
if (userID) {
// If user ID exists in localStorage, set the href attribute
anchor.href = `/api/set-channel-subs?ID=${userID}&channelName=<%=j.Channel?.Metadata.Name%>&avatar=https://p.poketube.fun/<%- j.Channel?.Metadata.Avatars.Thumbnail?.$t %>&channelID=<%= ID %>`;
} else {
// If user ID doesn't exist in localStorage, you can handle it as needed
console.log("User ID not found in localStorage");
// Optionally, you can set a default href or display an error message.
}
2023-11-24 10:28:58 -05:00
document.getElementById('search').addEventListener('keyup', function () {
2023-12-13 00:21:46 -05:00
var value = this.value.toLowerCase();
var videos = document.querySelectorAll('.video, .shorts-video');
2023-11-24 10:28:58 -05:00
2023-12-13 00:21:46 -05:00
videos.forEach(function (video) {
var text = video.textContent.toLowerCase();
if (text.indexOf(value) > -1) {
video.style.visibility = 'visible';
video.style.display = 'grid';
} else {
video.style.visibility = 'hidden';
video.style.display = 'none';
}
});
});
document.getElementById('search').addEventListener('keyup', function () {
var value = this.value.toLowerCase();
var videos = document.querySelectorAll('.community-content');
videos.forEach(function (video) {
var text = video.textContent.toLowerCase();
if (text.indexOf(value) > -1) {
video.style.visibility = 'visible';
video.style.display = 'block';
} else {
video.style.visibility = 'hidden';
video.style.display = 'none';
}
});
});
2023-11-24 10:28:58 -05:00
// @license-end
2023-12-13 00:21:46 -05:00
2023-08-18 12:26:05 -04:00
</script>
2022-12-09 12:12:21 -05:00
</body>
2022-03-07 11:11:05 -05:00
2022-06-08 13:39:41 -04:00
2022-03-07 11:11:05 -05:00
</html>
2022-09-23 09:30:50 -04:00
2023-09-27 14:20:31 -04:00
<% } catch (error) { %>
2023-12-15 00:09:10 -05:00
<% } %>
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('service-worker.js');
}
</script>