1
Fork 0
poke/html/poketube.ejs

871 lines
38 KiB
Text
Raw Normal View History

2022-08-07 12:31:59 -04:00
2022-08-06 13:07:06 -04:00
<% if (!isMobile) { %>
<!--
2022-03-05 02:53:15 -05:00
This Source Code Form is subject to the terms of the GNU General Public License:
2022-05-17 16:08:31 -04:00
Copyright (C) 2021-2022 POKETUBE (https://github.com/iamashley0/poketube)
2022-03-05 02:53:15 -05: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-02-13 11:34:25 -05:00
<!DOCTYPE html>
2022-07-31 05:41:20 -04:00
<html class="poketube_desktop">
<head>
<% if (e === false) { %> <!-- if ?e=false,dont show up the meta tags -->
2022-06-23 08:45:59 -04:00
<% } %>
<% if (!e) { %>
2022-03-06 08:55:07 -05:00
<meta content="<%=video.Title%>" name=title>
2022-05-20 12:22:27 -04:00
<meta content="<%=color%>" name="theme-color">
2022-06-24 03:45:33 -04:00
<meta content="<%=video.Channel.Name%>" name=twitter:author>
2022-01-23 15:51:12 -05:00
<meta content=@youtube name=twitter:site>
<meta content="https://poketube.fun/watch?v=<%=video.id%>" name=twitter:url>
2022-07-13 07:20:20 -04:00
<meta content="<%=video.Title%> - PokeTube" name=twitter:title>
2022-07-21 17:02:08 -04:00
<meta content="Watch this video by <%=video.Channel.Name%> On PokeTube. The YouTube front-end that doesnt track you!" property=twitter:description>
2022-07-13 07:20:20 -04:00
<meta content="https://i.ytimg.com/vi/<%=video.id%>/maxresdefault.jpg" property=og:image>
<meta content=summary_large_image name=twitter:card>
2022-06-04 15:01:29 -04:00
<link href="https://poketube.fun/watch?v=<%=video.id%>" itemprop=url>
<link href="http://www.youtube.com/channel/<%=video.Channel.id%>" itemprop=url>
2022-07-09 03:06:53 -04:00
<% } %> <!-- close the } -->
2022-06-25 05:01:40 -04:00
<link href=/css/yt-ukraine.svg?v=6 rel=icon>
2022-03-27 05:44:25 -04:00
<title> <%=video.Title%> - PokeTube</title>
2022-08-15 04:53:02 -04:00
<link href="https://p.poketube.fun/https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel=stylesheet>
2022-03-27 05:44:25 -04:00
<link href=/css/app-cdn.min.css rel=stylesheet>
2022-02-21 14:29:28 -05:00
<link href=/css/app.main.css rel=stylesheet>
2022-06-24 06:30:38 -04:00
<link href="/css/watch.main.css?v=56" rel=stylesheet>
2022-08-15 04:53:02 -04:00
<link href="https://p.poketube.fun/https://fonts.googleapis.com/css2?family=Inter:wght@900&family=Sigmar+One&display=swap" rel=stylesheet>
2022-07-31 05:41:20 -04:00
<link href=https://site-assets.fontawesome.com/releases/v6.1.1/css/all.css rel=stylesheet>
</head>
<!-- STYLES START -->
2022-03-05 02:53:15 -05:00
<style>
a.class:hover {
text-decoration:underline;
font-weight:bold
2022-05-18 14:16:55 -04:00
}
summary{
2022-06-08 12:05:47 -04:00
color:gray;
2022-05-18 14:16:55 -04:00
}
summary:hover{
2022-06-08 12:05:47 -04:00
color:white;
2022-03-05 02:53:15 -05:00
}
</style>
2022-07-31 05:41:20 -04:00
<style>
2022-05-17 16:08:31 -04:00
body{
overflow-x: hidden; /* Hide horizontal scrollbar */
2022-06-24 03:45:33 -04:00
color:#111111
2022-05-17 16:08:31 -04:00
}
.animated {
-webkit-animation-duration: 10s;
animation-duration: 10s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
animation-iteration-count: infinite;
-moz-animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
-o-animation-iteration-count: infinite;
}
@-webkit-keyframes wiggle {
0% { -webkit-transform: skewX(9deg); }
10% { -webkit-transform: skewX(-8deg); }
20% { -webkit-transform: skewX(7deg); }
30% { -webkit-transform: skewX(-6deg); }
40% { -webkit-transform: skewX(5deg); }
50% { -webkit-transform: skewX(-4deg); }
60% { -webkit-transform: skewX(3deg); }
70% { -webkit-transform: skewX(-2deg); }
80% { -webkit-transform: skewX(1deg); }
90% { -webkit-transform: skewX(0deg); }
100% { -webkit-transform: skewX(0deg); }
}
@keyframes wiggle {
0% { transform: skewX(9deg); }
10% { transform: skewX(-8deg); }
20% { transform: skewX(7deg); }
30% { transform: skewX(-6deg); }
40% { transform: skewX(5deg); }
50% { transform: skewX(-4deg); }
60% { transform: skewX(3deg); }
70% { transform: skewX(-2deg); }
80% { transform: skewX(1deg); }
90% { transform: skewX(0deg); }
100% { transform: skewX(0deg); }
}
.wiggle {
-webkit-animation-name: wiggle;
animation-name: wiggle;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
.animated.wiggle {
-webkit-animation-duration: 0.75s;
animation-duration: 0.75s;
}
2022-06-22 05:53:57 -04:00
:root {
--text-primary: #fff;
--text-secondary: #fff;
--text-link: #3ea6ff;
2022-06-24 03:45:33 -04:00
--app-background: #111111;
2022-06-22 05:53:57 -04:00
--context-menu-background: #333;
--border-color: #444;
--item-hover-background: #373737;
--item-active-background: #383838;
--top-bar-background: #202020;
--guide-background: #212121;
--thumbnail-background: #252525;
--channel-info-background: #181818;
--channel-contents-background: #0f0f0f;
}
2022-07-31 05:41:20 -04:00
@font-face {
font-family: 'Ginto Nord';
font-weight: 800;
src:url('https://cdn.statically.io/gh/brecert/discord-quote-generator/main/Ginto-Nord-800.woff') format("woff");
2022-07-07 07:34:44 -04:00
}
2022-07-10 15:29:54 -04:00
.alert {
padding: 20px;
background-color: #f44336;
color: white;
opacity: 1;
transition: opacity 0.6s;
margin-bottom: 15px;
}
.alert.success {background-color: #04AA6D;}
.alert.info {background-color: #2196F3;}
.alert.warning {background-color: #ff9800;}
2022-06-22 05:53:57 -04:00
.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}
.closebtn:hover {
color: black;
2022-07-31 05:41:20 -04:00
}
</style>
<!-- NEW NAVBAR -->
<style>
2022-07-31 21:38:04 -04:00
nav {
background:#0f0b0b
}
2022-07-31 05:41:20 -04:00
nav .right {
display: flex;
2022-07-31 09:51:23 -04:00
border-radius: 5px;
2022-07-31 05:41:20 -04:00
justify-content: normal;
padding-left: 0px;
align-items: center;
2022-08-09 17:42:18 -04:00
margin-left: 10px;
2022-06-22 05:53:57 -04:00
}
2022-07-31 09:51:23 -04:00
nav .left {
display: flex;
justify-content: flex-start;
align-items: center;
border-radius: 5px;
padding-left: 0px;
2022-08-09 17:42:18 -04:00
margin-right: 40px;
2022-07-31 09:51:23 -04:00
}
nav .middle {
display: flex;
2022-08-09 01:44:45 -04:00
justify-content: center;
2022-07-31 09:51:23 -04:00
align-items: center;
border-radius: 5px;
}
2022-05-17 16:08:31 -04:00
</style>
2022-07-31 05:41:20 -04:00
<!-- STYLES END -->
<body>
2022-07-16 06:05:11 -04:00
<div class="app" style="color:#fff">
2022-08-09 17:42:18 -04:00
<nav>
<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">
<form action=/search><input class=search-bar autocomplete="on" id=fname name=query style="color:#fff;font-family:Inter,sans-serif;border-radius: 8px;"> <button class="btn btn-success" type=submit><i class="fa-light fa-search"></i></button></form>
2022-08-08 19:39:07 -04:00
</div>
2022-08-09 17:42:18 -04:00
<div class="right">
<a href="/privacy">
<i style="display: block;margin-left: auto;margin-right: auto;" class="fa-light fa-shield"></i>
</a>
<a href="/video/upload?from=">
<i style="display: block;margin-left: auto;margin-right: auto;" class="fa-light fa-video"></i>
</a>
<a href="/download?v=<%=video.id%>">
<i style="display: block;margin-left: auto;margin-right: auto;" class="fa-light fa-download"></i>
</a>
</div>
</nav>
2022-06-26 01:03:24 -04:00
2022-06-22 05:53:57 -04:00
<div class="watch-page">
2022-07-09 03:06:53 -04:00
<div class="primary">
2022-06-22 05:53:57 -04:00
<div class="video-player-container">
2022-08-15 04:53:02 -04:00
<video class="player" id="<%=sha384(video.id)%>" style="border-radius: 16px;" autoplay controls src="https://v.poketube.fun/<%=url%>" poster="https://p.poketube.fun/https://i.ytimg.com/vi/<%=video.id%>/hqdefault.jpg?v=607ddcd4">
2022-08-07 09:33:07 -04:00
</video><img src="https://t.poketube.fun/t/rep.gif?video=<%=btoa(video.id)%>" style="border:0;width: 0;visibility: hidden;" id="video">
2022-08-11 20:13:16 -04:00
<div style="display: flex;justify-content: center;align-items: center;flex-direction: row; column-gap: 3px;" align="center">
<% if (!qua) { %>
2022-08-08 19:39:07 -04:00
2022-08-10 15:34:28 -04:00
<i style="display: block;" class="fa-solid fa-high-definition"></i> <a href="/watch?v=<%=video.id%>&quality=medium"><i style="display: block;" class="fa-light fa-standard-definition"></i></a>
2022-08-08 19:39:07 -04:00
<% } %>
<% if (qua) { %>
2022-08-10 15:34:28 -04:00
<a href="/watch?v=<%=video.id%>"> <i style="display: block;" class="fa-light fa-high-definition"></i> </a> <i style="display: block;" class="fa-solid fa-standard-definition"></i>
2022-08-08 19:39:07 -04:00
<% } %>
</div>
2022-08-16 19:10:16 -04:00
<div style="font-family:Inter">
<p style="text-align:center;">
2022-08-17 11:24:29 -04:00
if the video is not loading, try the sd quailty. if its buffering, refresh the page or wait for it to download it qwq (try using the arrow buttons on your keyboard to download the whole video faster.) if you still have problems using poketube, create an issue <a href="https://codeberg.org/Ashley/poketube/issues/new">here.</a>
2022-08-16 19:10:16 -04:00
</p>
</div>
</div>
<br>
2022-06-22 05:53:57 -04:00
<div class="video-info">
2022-07-07 07:34:44 -04:00
<div class="video-title" style="font-family:'Ginto Nord';font-weight:900;white-space:yes;"><%=video.Title%></div>
2022-06-22 05:53:57 -04:00
<p class="video-sub-info description">
2022-08-06 09:32:24 -04:00
<span><%=engagement.viewCount.toLocaleString()%> Total views - Uploaded on <%=date%> ^^</span>
<br> <br>
2022-08-16 19:10:16 -04:00
<% if (video.Channel.Name.endsWith(' - Topic')) { %>
<b style="font-family:Inter">Listen to this song on <a href="/music?v=<%=video.id%>"> poketube music!</a> owo :3 </b> <br> <br>
<% }%>
2022-08-06 09:32:24 -04:00
<%-String(video.Description).replace(/\n/g, " <br> ")%></center>
2022-06-22 05:53:57 -04:00
</p>
2022-08-06 09:32:24 -04:00
<div class="video-info-buttons" style="border-radius: 15px;background: #333;padding: 3px;border-style: none;min-height: 34px;height: min-content;">
2022-06-22 05:53:57 -04:00
<div>
2022-07-13 08:35:55 -04:00
<i class="fa-light fa-thumbs-up"></i>
2022-06-22 05:53:57 -04:00
<%=engagement.likes.toLocaleString()%>
</div>
<div>
2022-07-13 08:35:55 -04:00
<i class="fa-light fa-thumbs-down"></i> <%=engagement.dislikes.toLocaleString()%>
2022-06-22 05:53:57 -04:00
</div>
<div>
2022-07-12 13:11:23 -04:00
<a style="color:#fff" href="/download?v=<%=video.id%>">
2022-07-13 08:35:55 -04:00
<i class="fa-light fa-download"></i>
2022-07-31 05:41:20 -04:00
Download!
2022-06-22 05:53:57 -04:00
</a>
2022-06-29 17:16:06 -04:00
2022-06-22 05:53:57 -04:00
<a style="color:#fff" href="/old/watch?v=<%=video.id%>">
2022-07-13 08:35:55 -04:00
<i class="fa-light fa-history"></i>
2022-06-22 05:53:57 -04:00
Watch in old UI
</a>
</div>
</div>
</div>
2022-06-24 09:10:38 -04:00
<div class="channel-info__bordered" name="chnl">
2022-06-23 11:38:07 -04:00
<a href="/channel?id=<%=video.Channel.id%>" class="avatar">
2022-08-15 06:23:27 -04:00
<img src="https://p.poketube.fun/<%= k.Video.Channel.Avatar[1].$t %>">
2022-06-22 05:53:57 -04:00
</a>
2022-07-07 07:34:44 -04:00
<div class="name" style="font-family:'Ginto Nord'">
2022-06-23 11:38:07 -04:00
<a href="/channel?id=<%=video.Channel.id%>" > <%=video.Channel.Name%></a>
2022-06-22 05:53:57 -04:00
</div>
<div class="subscriber-count">
2022-06-23 11:38:07 -04:00
<%= k.Video.Channel.subscriberCount %>
2022-06-22 05:53:57 -04:00
</div>
2022-06-24 09:10:38 -04:00
<button class="subscribe-button" ><a style="color:#fff" href="https://www.youtube.com/channel/<%=video.Channel.id%>?view_as=subscriber?sub_confirmation=1">Suscribe</a></button>
2022-06-22 05:53:57 -04:00
</div>
2022-07-22 09:00:07 -04:00
<div>
<br>
2022-08-08 12:49:57 -04:00
</div> <hr style="clear: both;display: block;border: none;border-bottom: 0.5px solid #2f2f2f;margin: 0 0;/*! width: 4.5em; */height: 0;">
2022-08-06 15:22:46 -04:00
<div class="video-title" style="font-family:'Ginto Nord';font-weight:900;white-space:yes;">Encryption Information!</div><br>
2022-08-17 11:24:29 -04:00
<i class="fas fa-shield-alt"></i> The Connection is secured with ECDSA with SHA-384 Signature Algorithm :3 (<a href="https://en.wikipedia.org/wiki/Encryption">WHAT THE HELL IS ENCRYPTION ?! (ME DUM)</a>) <br><br>
2022-08-06 15:22:46 -04:00
2022-08-08 19:39:07 -04:00
2022-08-04 05:12:24 -04:00
<div>
2022-08-06 15:22:46 -04:00
<a href="/encryption?v=<%=video.id%>">Click here for encryption info</a><br>
2022-08-04 05:12:24 -04:00
</div>
2022-08-06 15:22:46 -04:00
2022-08-04 05:12:24 -04:00
</p>
<hr style="clear: both;display: block;border: none;border-bottom: 0.5px solid #2f2f2f;margin: 0 0;/*! width: 4.5em; */height: 0;">
2022-08-08 19:39:07 -04:00
2022-08-08 12:49:57 -04:00
<hr style="clear: both;display: block;border: none;border-bottom: 0.5px solid #2f2f2f;margin: 0 0;/*! width: 4.5em; */height: 0;">
2022-08-03 17:54:40 -04:00
</div>
2022-08-08 12:49:57 -04:00
2022-06-24 06:55:31 -04:00
<div class="recommended-list" style="background-color:#1c1c1c;border-radius:25px;margin: 10px;">
2022-07-29 18:45:28 -04:00
<div style="font-family:Inter,sans-serif;font-weight:900;white-space:yes;" align="center">
2022-07-10 15:29:54 -04:00
2022-07-09 03:06:53 -04:00
<a href="https://youtube.com/watch?v=<%=video.id%>">Open On YouTube</a> • <a href="/privacy">Privacy</a> • <a href="https://github.com/iamashley0/poketube/">Git</a>
2022-08-08 12:49:57 -04:00
</div>
2022-06-29 17:16:06 -04:00
<% if (optout) { %>
<% } %>
<% if (!optout) { %>
<div style="font-family:Inter,sans-serif;font-weight:900;white-space:yes;" align="center">
<a href="/watch?v=<%=video.id%>&t=f">
2022-07-24 16:07:27 -04:00
Opt out of Metrics</a> (<a href="/privacy" style="color:#fff">Wut?</a>)
2022-06-29 17:16:06 -04:00
</div>
<% } %>
2022-06-22 09:34:25 -04:00
<% if (lyrics && !r) { %>
2022-07-13 08:35:55 -04:00
<div style="font-family:Inter,sans-serif;font-weight:900;white-space:yes;" align="center">
2022-06-29 17:16:06 -04:00
<% if (optout) { %>
2022-07-24 16:07:27 -04:00
<a href="/watch?v=<%=video.id%>&r=f">Lyrics (Wow)</a>
2022-07-13 08:35:55 -04:00
2022-06-29 17:16:06 -04:00
2022-07-12 13:11:23 -04:00
<% } %>
2022-06-29 17:16:06 -04:00
<% if (!optout) { %>
2022-07-24 16:07:27 -04:00
<a href="/watch?v=<%=video.id%>&r=f">Lyrics (Wow)</a>
2022-06-29 17:16:06 -04:00
<% } %>
2022-07-13 08:35:55 -04:00
</div>
<% } %>
2022-06-22 09:34:25 -04:00
<% if (!r) { %>
2022-07-07 07:34:44 -04:00
<hr style="clear: both;display: block;border: none;border-bottom: 0.5px solid #2f2f2f;margin: 0 0;/*! width: 4.5em; */height: 0;">
2022-08-08 12:49:57 -04:00
<div>
<a href="/watch?v=<%=video.id%>">Recommended videos</a> • <a href="/watch?v=<%=video.id%>&f=t"> Recent videos on dis channel</a>
</div> <hr style="clear: both;display: block;border: none;border-bottom: 0.5px solid #2f2f2f;margin: 0 0;/*! width: 4.5em; */height: 0;">
2022-07-13 08:35:55 -04:00
<% if (!f) { %>
2022-06-26 01:03:24 -04:00
<% k.Video.Recommendations.Video.forEach(x => { %>
<div class="video">
2022-06-29 17:16:06 -04:00
<% if (!optout) { %>
2022-08-15 04:53:02 -04:00
<a href="/watch?v=<%= x.id %>" class="thumbnail" style="background-image: url('https://p.poketube.fun/https://i.ytimg.com/vi/<%= x.id %>/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLBy_x4UUHLNDZtJtH0PXeQGoRFTgw');border-radius: 0.5pc;" > <span class="video-length"><%=x.duration %></span>
2022-06-29 17:16:06 -04:00
<% } %>
<% if (optout) { %>
2022-08-15 04:53:02 -04:00
<a href="/watch?v=<%= x.id %>&t=f" class="thumbnail" style="background-image: url('https://p.poketube.fun/https://i.ytimg.com/vi/<%= x.id %>/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLBy_x4UUHLNDZtJtH0PXeQGoRFTgw');border-radius: 0.5pc;" > <span class="video-length"><%=x.duration %></span>
2022-06-29 17:16:06 -04:00
<% } %>
2022-06-22 09:34:25 -04:00
</a>
<div class="info">
2022-06-29 17:16:06 -04:00
<% if (!optout) { %>
2022-06-22 09:34:25 -04:00
<a href="/watch?v=<%= x.id %>" class="title max-lines-2"><%= x.Title %></a>
2022-06-29 17:16:06 -04:00
<% } %>
<% if (optout) { %>
<a href="/watch?v=<%= x.id %>&t=f" class="title max-lines-2"><%= x.Title %></a>
<% } %>
2022-06-22 09:34:25 -04:00
<div>
2022-06-26 01:03:24 -04:00
<a class="max-lines-2" href="/channel?id=<%= x.Channel.id %>"><%=x.Channel.Name %></a>
2022-06-22 09:34:25 -04:00
<div>
2022-06-24 09:10:38 -04:00
<%= x.uploadedAt %> </div>
2022-06-22 09:34:25 -04:00
</div>
</div>
</div>
2022-07-13 08:35:55 -04:00
2022-06-22 09:34:25 -04:00
<% }) %>
<% } %>
2022-07-13 08:35:55 -04:00
<% if (f) { %>
<% tj.Channel.Contents.ItemSection.ItemSection.Video.forEach(x => { %>
<div class="video">
<% if (!optout) { %>
2022-06-22 09:34:25 -04:00
2022-08-15 04:53:02 -04:00
<a href="/watch?v=<%= x.id %>" class="thumbnail" style="background-image: url('https://p.poketube.fun/https://i.ytimg.com/vi/<%= x.id %>/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLBy_x4UUHLNDZtJtH0PXeQGoRFTgw');border-radius: 0.5pc;" > <span class="video-length"><%=x.duration %></span>
2022-07-13 08:35:55 -04:00
<% } %>
<% if (optout) { %>
2022-08-15 04:53:02 -04:00
<a href="/watch?v=<%= x.id %>&t=f" class="thumbnail" style="background-image: url('https://p.poketube.fun/https://i.ytimg.com/vi/<%= x.id %>/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLBy_x4UUHLNDZtJtH0PXeQGoRFTgw');border-radius: 0.5pc;" > <span class="video-length"><%=x.duration %></span>
<% } %>
2022-07-13 08:35:55 -04:00
</a>
<div class="info">
2022-07-21 17:02:08 -04:00
<% if (!optout) { %>
2022-07-13 08:35:55 -04:00
<a href="/watch?v=<%= x.id %>" class="title max-lines-2"><%= x.Title %></a>
<% } %>
<% if (optout) { %>
<a href="/watch?v=<%= x.id %>&t=f" class="title max-lines-2"><%= x.Title %></a>
<% } %>
<div>
<a class="max-lines-2" href="/channel?id=<%= video.Channel.id %>"><%=video.Channel.Name %></a>
<div>
<%= x.uploadedAt %> </div>
</div>
</div>
</div>
2022-06-22 05:53:57 -04:00
2022-07-13 08:35:55 -04:00
<% }) %>
<% } %>
<% } %>
2022-07-13 08:35:55 -04:00
2022-06-22 05:53:57 -04:00
<% if (lyrics) { %>
2022-06-22 09:34:25 -04:00
<% if (r === "f") { %>
2022-07-07 07:34:44 -04:00
<hr style="clear: both;display: block;border: none;border-bottom: 0.5px solid #2f2f2f;margin: 0 0;/*! width: 4.5em; */height: 0;">
2022-07-31 05:41:20 -04:00
<div>
2022-07-24 16:07:27 -04:00
<a href="/watch?v=<%=video.id%>">See the Recommended videos instead</a> - <a href="https://github.com/iamashley0/poketube/issues">Report wrong lyrics qwq</a>
2022-07-31 05:41:20 -04:00
</div>
2022-07-07 07:34:44 -04:00
<div align="center"> <hr style="clear: both;display: block;border: none;border-bottom: 0.5px solid #2f2f2f;margin: 0 0;/*! width: 4.5em; */height: 0;">
<h1 style="font-family:'Ginto Nord',sans-serif;font-weight:900;white-space:yes;" align="center">
Lyrics
2022-06-22 05:53:57 -04:00
</h1>
<p>
See how our lyrics search works:<a href="https://github.com/iamashley0/poketube/blob/main/src/lyrics.js">Here</a>
</p>
2022-02-21 14:29:28 -05:00
<p style="color: white;">
<p style=color:#fff>
<%-lyrics%>
2022-06-08 12:05:47 -04:00
</p>
2022-06-22 09:34:25 -04:00
<% } %>
2022-06-08 12:05:47 -04:00
2022-06-22 09:34:25 -04:00
<% } %> </details>
</div>
2022-06-26 01:03:24 -04:00
</div>
2022-08-06 13:07:06 -04:00
2022-07-13 08:35:55 -04:00
2022-07-09 03:06:53 -04:00
<% if (!optout) { %>
<!-- MORE INFO :https://poketube.fun/privacy -->
<!-- MORE INFO :https://poketube.fun/privacy -->
<!-- if you want to change the url - please see config in server.js -->
<!-- START <%=t%> -->
2022-07-21 17:02:08 -04:00
2022-07-31 05:41:20 -04:00
<!-- SESSION -->
2022-07-09 03:06:53 -04:00
<img src="<%=t%>t/rep.gif?ID=<%=btoa(Date.now())%>" style="width: 0;visibility: hidden;" id="SesionID">
2022-07-31 05:41:20 -04:00
<img src="<%=t%>t/rep.gif?piwik=t" style="width: 0;visibility: hidden;" id="piwik_noip_no_personal-info_collect">
<!-- VIDEO -->
2022-07-09 03:06:53 -04:00
<img src="<%=t%>t/rep.gif?video_id=<%=btoa(video.id)%>" style="width: 0;visibility: hidden;" id="videoID">
<img src="<%=t%>t/rep.gif?channel_ID=<%=btoa(video.Channel.id)%>" style="width: 0;visibility: hidden;" id="channel">
2022-07-21 17:02:08 -04:00
2022-07-09 03:06:53 -04:00
<!-- END <%=t%> -->
<% } %>
2022-06-22 05:53:57 -04:00
</div>
2022-06-26 01:03:24 -04:00
2022-06-22 05:53:57 -04:00
</body>
</html>
2022-07-31 05:41:20 -04:00
2022-08-06 13:07:06 -04:00
<% } %>
<% if (isMobile) { %>
<!--
This Source Code Form is subject to the terms of the GNU General Public License:
Copyright (C) 2021-2022 POKETUBE (https://github.com/iamashley0/poketube)
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/.
-->
<!DOCTYPE html>
<% if (e === false) { %> <!-- if ?e=false,dont show up the meta tags -->
<% } %>
<% if (!e) { %>
<meta content="<%=video.Title%>" name=title>
<meta content="<%=color%>" name="theme-color">
<meta content="<%=video.Channel.Name%>" name=twitter:author>
<meta content=@youtube name=twitter:site>
2022-08-07 08:24:25 -04:00
<meta content="https://poketube.fun/watch?v=<%=video.id%>" name=twitter:url>
2022-08-06 13:07:06 -04:00
<meta content="<%=video.Title%> - PokeTube" name=twitter:title>
<meta content="mobile this video by <%=video.Channel.Name%> On PokeTube. The YouTube front-end that doesnt track you!" property=twitter:description>
<meta content="https://i.ytimg.com/vi/<%=video.id%>/maxresdefault.jpg" property=og:image>
<meta content=summary_large_image name=twitter:card>
2022-08-07 08:24:25 -04:00
<link href="https://poketube.fun/watch?v=<%=video.id%>" itemprop=url>
2022-08-06 13:07:06 -04:00
<% } %> <!-- close the } -->
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href=/css/yt-ukraine.svg?v=6 rel=icon>
<title> <%=video.Title%> - PokeTube Mobile</title>
2022-08-15 04:53:02 -04:00
<link href="https://p.poketube.fun/https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel=stylesheet>
<link href="https://p.poketube.fun/https://tube.kuylar.dev/css/mobile.css" rel=stylesheet>
2022-08-06 13:07:06 -04:00
<link href=/css/app.main.css rel=stylesheet>
2022-08-15 04:53:02 -04:00
<link href="https://p.poketube.fun/https://fonts.googleapis.com/css2?family=Inter:wght@900&family=Sigmar+One&display=swap" rel=stylesheet>
2022-08-06 13:07:06 -04:00
<link href=https://site-assets.fontawesome.com/releases/v6.1.1/css/all.css rel=stylesheet>
<style>
a.class:hover {
text-decoration:underline;
font-weight:bold
}
summary{
color:gray;
}
summary:hover{
color:white;
}
</style>
<!-- WIGGLE WIGGLE WIGGLE -->
<style>
body{
max-width: 100%;
overflow-x: hidden; /* Hide horizontal scrollbar */
color:#111111
}
.animated {
-webkit-animation-duration: 10s;
animation-duration: 10s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
animation-iteration-count: infinite;
-moz-animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
-o-animation-iteration-count: infinite;
}
@-webkit-keyframes wiggle {
0% { -webkit-transform: skewX(9deg); }
10% { -webkit-transform: skewX(-8deg); }
20% { -webkit-transform: skewX(7deg); }
30% { -webkit-transform: skewX(-6deg); }
40% { -webkit-transform: skewX(5deg); }
50% { -webkit-transform: skewX(-4deg); }
60% { -webkit-transform: skewX(3deg); }
70% { -webkit-transform: skewX(-2deg); }
80% { -webkit-transform: skewX(1deg); }
90% { -webkit-transform: skewX(0deg); }
100% { -webkit-transform: skewX(0deg); }
}
@keyframes wiggle {
0% { transform: skewX(9deg); }
10% { transform: skewX(-8deg); }
20% { transform: skewX(7deg); }
30% { transform: skewX(-6deg); }
40% { transform: skewX(5deg); }
50% { transform: skewX(-4deg); }
60% { transform: skewX(3deg); }
70% { transform: skewX(-2deg); }
80% { transform: skewX(1deg); }
90% { transform: skewX(0deg); }
100% { transform: skewX(0deg); }
}
.wiggle {
-webkit-animation-name: wiggle;
animation-name: wiggle;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
.animated.wiggle {
-webkit-animation-duration: 0.75s;
animation-duration: 0.75s;
}
:root {
--text-primary: #fff;
--text-secondary: #fff;
--text-link: #3ea6ff;
--app-background: #111111;
--context-menu-background: #333;
--border-color: #444;
--item-hover-background: #373737;
--item-active-background: #383838;
--top-bar-background: #202020;
--guide-background: #212121;
--thumbnail-background: #252525;
--channel-info-background: #181818;
--channel-contents-background: #0f0f0f;
}
@font-face {
font-family: 'Ginto Nord';
font-weight: 800;
src:url('https://cdn.statically.io/gh/brecert/discord-quote-generator/main/Ginto-Nord-800.woff') format("woff");
}
.alert {
padding: 20px;
background-color: #f44336;
color: white;
opacity: 1;
transition: opacity 0.6s;
margin-bottom: 15px;
}
.alert.success {background-color: #04AA6D;}
.alert.info {background-color: #2196F3;}
.alert.warning {background-color: #ff9800;}
.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}
.closebtn:hover {
color: black;
}
</style>
2022-08-09 17:42:18 -04:00
<style>body, html { margin: 0; padding: 0; } * { font-family: sans-serif; color:#fff } .player { background-color: #000 !important; display: grid; grid-template-columns: 1fr min-content; grid-template-rows: max-content 1fr max-content max-content max-content; gap: 0 0; width: 100%; /* height: 100%; */ aspect-ratio: 16 / 9; } .player * { color: #fff; } .player.embed, video.embed { position: fixed; top: 0; bottom: 0; left: 0; right: 0; } .player * { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .player > video { position: relative; width: 100%; height: 100%; z-index: 0; grid-area: 1 / 1 / 6 / 3; } .player.hide-controls > .player-title, .player.hide-controls > .player-controls, .player.hide-controls > .player-playback-bar-container, .player.hide-controls > .player-menu { display: none !important; } .player-controls { background-color: #0007; display: flex; justify-content: center; align-items: center; z-index: 1; grid-area: 1 / 1 / 6 / 3; } .player-button { width: 96px; height: 96px; font-size: 90px; text-align: center; line-height: 48px; } .player-tiny-button { width: 40px; font-size: 20px; text-align: center; } .player-tiny-button > i { color: #ddd; } .player-button, .player-button * { color: #dddddd !important; text-decoration: none; } .player-button > i { min-width: 48px; } .player-button:hover, .player-button:hover * { color: #fff !important; } .player-playback-bar { transition: width linear 100ms; } .player-playback-bar-container { grid-area: 4 / 1 / 5 / 3; display: flex; column-gap: 8px; justify-content: center; align-items: center; height: 8px; transition: height linear 100ms; width: 100%; z-index: 2; margin-bottom: 10px; } .player-playback-bar-bg { background-color: #fff3 !important; width: 100%; height: 100%; z-index: 2; display: grid; grid-template-columns: 1fr; grid-template-rows: 1fr; } .player-playback-bar-bg > * { grid-area: 1 / 1 / 2 / 2; } .player-playback-bar-buffer { background-color: #fffa !important; height: 100%; width: 0; z-index: 3; } .player-playback-bar-fg { background-color: #f00 !important; height: 100%; width: 0; z-index: 4; } .player-buffering { grid-area: 1 / 1 / 6 / 3; z-index: 1; display: flex; justify-content: center; align-items: center; } .player-buffering-spinner { width: 80px; height: 80px; }</style>
2022-08-06 13:07:06 -04:00
<body>
<div class="app" style="color:#fff;margin-top: 0;">
<nav>
2022-08-08 11:11:23 -04:00
<div class=left><a class="class" href="/" style=font-family:Inter,sans-serif;color:#fff> <img style="width: 8.5em;display: block;margin-left: auto;margin-right: auto;" src="/css/logo-mobile.svg"> </a>
2022-08-06 13:07:06 -04:00
</div>
</nav>
<div class="mobile-page">
<div class="primary">
<div class="video-player-container">
2022-08-07 12:31:59 -04:00
<video class="player" autoplay style="border-radius: 16px;" controls src="<%=url%>" poster="https://i.ytimg.com/vi/<%=video.id%>/hqdefault.jpg?v=607ddcd4">
2022-08-06 13:07:06 -04:00
</video>
2022-08-07 11:00:36 -04:00
</div>
2022-08-06 13:07:06 -04:00
<div class="video-info">
2022-08-07 11:00:36 -04:00
<div class="video-title" style="font-family:'Inter';font-weight:900;white-space:yes;"><%=video.Title%> </div>
2022-08-06 13:07:06 -04:00
<div class="video-info-bar" style="font-family:'Inter';">
<div class="divider"></div>
<div class="divider"></div>
<%=engagement.viewCount.toLocaleString()%> Views - Uploaded on <%=date%> :3
<div class="video-info-buttons" style="font-family:'Inter';font-weight:900;white-space:yes;">
<div>
<i class="fa-light fa-thumbs-up" style="font-size:x-large" ></i>
<%=engagement.likes.toLocaleString()%>
</div>
<a>
<i class="fa-light fa-thumbs-down" style="font-size:x-large" ></i><%=engagement.dislikes.toLocaleString()%>
</a>
2022-08-08 11:11:23 -04:00
<a style="color:#fff" href="/download?v=<%=video.id%>&from=mobile">
2022-08-06 13:07:06 -04:00
<i style="font-size:x-large" class="fa-light fa-download"></i>
Download
</a>
2022-08-07 12:31:59 -04:00
<a style="color:#fff" href="#more"> <i style="font-size:x-large;color:#fff" class="fa-thin fa-circle-plus"></i>More.. </a>
2022-08-06 13:07:06 -04:00
</div>
</div>
<div class="channel-info" name="chnl">
<a href="/channel?id=<%=video.Channel.id%>" class="avatar">
<img src=" <%= k.Video.Channel.Avatar[1].$t %>">
</a>
<div class="name" style="font-family:'Ginto Nord'">
<a href="/channel?id=<%=video.Channel.id%>" > <%=video.Channel.Name%></a>
</div>
<button class="subscribe-button" ><a style="color:#fff" href="https://www.youtube.com/channel/<%=video.Channel.id%>?view_as=subscriber?sub_confirmation=1">Suscribe</a></button>
</div>
<div>
<div>
<h3 style="color:#fff;font-family:Ginto Nord,sans-serif;font-weight:700;white-space:yes;"> Description</h3>
2022-08-09 17:42:18 -04:00
<details open style="color:#fff"><summary style="color:#fff"></summary>
2022-08-06 13:07:06 -04:00
<p class="description"><%-String(video.Description).replace(/\n/g, " <br> ")%> </p>
</div>
</details>
</div>
</div>
<div class="secondary">
<div class="recommended-list" style="color:#fff">
<% if (!r) { %>
<hr style="clear: both;display: block;border: none;border-bottom: 0.5px solid #2f2f2f;margin: 0 0;/*! width: 4.5em; */height: 0;">
<div>
2022-08-07 08:24:25 -04:00
<a href="/watch?v=<%=video.id%>">Recommended videos</a> • <a href="/watch?v=<%=video.id%>&f=t"> Recent videos from this channel</a> </div>
2022-08-06 13:07:06 -04:00
<% if (!f) { %>
<% k.Video.Recommendations.Video.forEach(x => { %>
<div class="video">
<% if (!optout) { %>
2022-08-15 04:53:02 -04:00
<a href="/watch?v=<%= x.id %>" class="thumbnail" style="background-image: url('https://p.poketube.fun/https://i.ytimg.com/vi/<%= x.id %>/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLBy_x4UUHLNDZtJtH0PXeQGoRFTgw');border-radius: 9.5px;" > <span class="video-length"><%=x.duration %></span>
2022-08-06 13:07:06 -04:00
<% } %>
<% if (optout) { %>
2022-08-15 04:53:02 -04:00
<a href="/watch?v=<%= x.id %>&t=f" class="thumbnail" style="background-image: url('https://p.poketube.fun/https://i.ytimg.com/vi/<%= x.id %>/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLBy_x4UUHLNDZtJtH0PXeQGoRFTgw');border-radius: 9.5px;" > <span class="video-length"><%=x.duration %></span>
2022-08-06 13:07:06 -04:00
<% } %>
</a>
<div class="info">
<% if (!optout) { %>
2022-08-07 08:24:25 -04:00
<a href="/watch?v=<%= x.id %>" class="title max-lines-2"><%= x.Title %></a>
2022-08-06 13:07:06 -04:00
<% } %>
<% if (optout) { %>
2022-08-07 08:24:25 -04:00
<a href="/watch?v=<%= x.id %>&t=f" class="title max-lines-2"><%= x.Title %></a>
2022-08-06 13:07:06 -04:00
<% } %>
<div style="color:#fff" >
<a class="max-lines-2" style="color:#fff" href="/channel?id=<%= x.Channel.id %>"><%=x.Channel.Name %></a> • <div>
<%= x.uploadedAt %> </div>
</div>
</div>
</div>
<% }) %>
<% } %>
<% if (f) { %>
<% tj.Channel.Contents.ItemSection.ItemSection.Video.forEach(x => { %>
<div class="video">
<% if (!optout) { %>
2022-08-15 04:53:02 -04:00
<a href="/watch?v=<%= x.id %>" class="thumbnail" style="background-image: url('https://p.poketube.fun/https://i.ytimg.com/vi/<%= x.id %>/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLBy_x4UUHLNDZtJtH0PXeQGoRFTgw');border-radius: 9.5px;" > <span class="video-length"><%=x.duration %></span>
2022-08-06 13:07:06 -04:00
<% } %>
<% if (optout) { %>
2022-08-15 04:53:02 -04:00
<a href="/watch?v=<%= x.id %>&t=f" class="thumbnail" style="background-image: url('https://p.poketube.fun/https://i.ytimg.com/vi/<%= x.id %>/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLBy_x4UUHLNDZtJtH0PXeQGoRFTgw');border-radius: 9.5px;" > <span class="video-length"><%=x.duration %></span>
2022-08-06 13:07:06 -04:00
<% } %>
</a>
<div class="info">
<% if (!optout) { %>
2022-08-07 08:24:25 -04:00
<a href="/watch?v=<%= x.id %>" class="title max-lines-2"><%= x.Title %></a>
2022-08-06 13:07:06 -04:00
<% } %>
<% if (optout) { %>
2022-08-07 08:24:25 -04:00
<a href="/watch?v=<%= x.id %>&t=f" class="title max-lines-2"><%= x.Title %></a>
2022-08-06 13:07:06 -04:00
<% } %>
<div>
<a class="max-lines-2" style="color:#fff" href="/channel?id=<%= video.Channel.id %>"><%=video.Channel.Name %></a>
<div>
<%= x.uploadedAt %> </div>
</div>
</div>
</div>
<% }) %>
<% } %>
<a name="more"></a>
<hr style="clear: both;display: block;border: none;border-bottom: 0.5px solid #2f2f2f;margin: 0 0;/*! width: 4.5em; */height: 0;">
2022-08-09 17:42:18 -04:00
<h3 style="text-align:center;color:#fff;font-family:Ginto Nord,sans-serif;font-weight:700;white-space:yes"> MOAR </h3>
2022-08-06 13:07:06 -04:00
<p style="text-align:center;color:#fff; font-weight:700;white-space:yes;margin:0">More Epic options owo~</p>
<div style="font-family:Inter,sans-serif;font-weight:900;white-space:yes;" align="center">
<a href="https://youtube.com/watch?v=<%=video.id%>">Open On YouTube</a> • <a href="/privacy">Privacy</a> • <a href="https://github.com/iamashley0/poketube/">Git</a>
<% if (optout) { %>
<% } %>
<% if (!optout) { %>
2022-08-07 08:24:25 -04:00
• <a href="/watch?v=<%=video.id%>&t=f">
2022-08-06 13:07:06 -04:00
Opt out of Metrics</a> (<a href="/privacy" style="color:#fff">Wut?</a>)
<% } %>
<% if (lyrics && !r) { %>
<% if (optout) { %>
2022-08-07 08:24:25 -04:00
<br> <br> <a href="/watch?v=<%=video.id%>&r=f"> Lyrics (Wow) </a>
2022-08-06 13:07:06 -04:00
<% } %>
<% if (!optout) { %>
2022-08-07 08:24:25 -04:00
<br> <br> <a href="/watch?v=<%=video.id%>&r=f" > Lyrics (Wow) </a>
2022-08-06 13:07:06 -04:00
<% } %>
<% } %>
<% } %>
<p><i class="fa-light fa-shield"></i>The Connection is secured with ECDSA with SHA-384 Signature Algorithm :3 </p>
</div>
<% if (lyrics) { %>
<% if (r === "f") { %>
<hr style="clear: both;display: block;border: none;border-bottom: 0.5px solid #2f2f2f;margin: 0 0;/*! width: 4.5em; */height: 0;">
<p>
2022-08-07 08:24:25 -04:00
<a href="/watch?v=<%=video.id%>">See the Recommended videos instead</a> - <a href="https://github.com/iamashley0/poketube/issues">Report wrong lyrics qwq</a>
2022-08-06 13:07:06 -04:00
</p>
<div align="center"> <hr style="clear: both;display: block;border: none;border-bottom: 0.5px solid #2f2f2f;margin: 0 0;/*! width: 4.5em; */height: 0;">
<h1 style="font-family:'Ginto Nord',sans-serif;font-weight:900;white-space:yes;" align="center">
Lyrics
</h1>
<p>
See how our lyrics search works:<a href="https://github.com/iamashley0/poketube/blob/main/src/lyrics.js">Here</a>
</p>
<p style="color: white;">
<p style=color:#fff>
<%-lyrics%>
</p>
<% } %>
<% } %>
</div>
</div>
<% if (!optout) { %>
<!-- MORE INFO :https://poketube.fun/privacy -->
<!-- MORE INFO :https://poketube.fun/privacy -->
<!-- if you want to change the url - please see config in server.js -->
<!-- START <%=t%> -->
<!-- mobile only -->
<!-- dont use matomo.php, as its being blocked by ublock origin. -->
<img src="<%=t%>t/index.php?idsite=5&amp;rec=1" style="width: 0;visibility: hidden;border:0;" alt="" >
<!--- mobile only -->
<img src="<%=t%>t/rep.gif?ID=<%=btoa(Date.now())%>" style="width: 0;visibility: hidden;" id="SesionID">
<img src="<%=t%>t/rep.gif?video_id=<%=btoa(video.id)%>" style="width: 0;visibility: hidden;" id="videoID">
<img src="<%=t%>t/rep.gif?channel_ID=<%=btoa(video.Channel.id)%>" style="width: 0;visibility: hidden;" id="channel">
<img src="<%=t%>t/rep.gif?piwik=t" style="width: 0;visibility: hidden;" id="piwik_noip_no_personal-info_collect">
<!-- END <%=t%> -->
<% } %>
</div>
</body>
</html>
</body>
<% } %>