mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 11:38:25 +01:00
Update channel.ejs
This commit is contained in:
parent
afe5a0e5fd
commit
1fd520e55e
1 changed files with 51 additions and 10 deletions
|
@ -5,7 +5,7 @@
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Sigmar+One&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Sigmar+One&display=swap" rel="stylesheet">
|
||||||
<meta content=website property=og:type>
|
<meta content=website property=og:type>
|
||||||
<meta content="<%=j.Channel.Metadata.Name%> - PokeTube" property=og:title>
|
<meta content="<%=j.Channel.Metadata.Name%> - PokeTube" property=og:title>
|
||||||
<meta content="<%-desc%>" property=twitter:description>
|
<meta content="<%-desc.replace(/\n/g, " ")%>" property=twitter:description>
|
||||||
<meta content="<%=j.Channel.Metadata.Banners.Thumbnail[2].$t%>" property=og:image>
|
<meta content="<%=j.Channel.Metadata.Banners.Thumbnail[2].$t%>" property=og:image>
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
|
||||||
<meta content=summary_large_image name=twitter:card>
|
<meta content=summary_large_image name=twitter:card>
|
||||||
|
@ -13,7 +13,26 @@
|
||||||
<meta content=@PoketaleBot name=twitter:creator>
|
<meta content=@PoketaleBot name=twitter:creator>
|
||||||
<link href=https://cdn.poketalebot.com/404/v2.css rel=stylesheet>
|
<link href=https://cdn.poketalebot.com/404/v2.css rel=stylesheet>
|
||||||
<link href=/css/app.main.css rel=stylesheet>
|
<link href=/css/app.main.css rel=stylesheet>
|
||||||
<link href=/css/search.main.css rel=stylesheet>
|
<link href=/css/search.main.css?v=6 rel=stylesheet>
|
||||||
|
<style> :root {
|
||||||
|
--text-primary: #fff;
|
||||||
|
--text-secondary: #fff;
|
||||||
|
--text-link: #3ea6ff;
|
||||||
|
|
||||||
|
--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;
|
||||||
|
}</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<center>
|
<center>
|
||||||
|
@ -27,8 +46,11 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<section class=youtube-video>
|
<section class=youtube-video>
|
||||||
<div class="app">
|
<div class="app">
|
||||||
|
<div class="channel-page">
|
||||||
|
|
||||||
<div class="channel-page">
|
<div class="channel-page">
|
||||||
<div class="channel-info-container">
|
<div class="channel-info-container">
|
||||||
<img src="<%=j.Channel.Metadata.Banners.Thumbnail[2].$t%>">
|
<img src="<%=j.Channel.Metadata.Banners.Thumbnail[2].$t%>">
|
||||||
|
@ -43,10 +65,29 @@
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div><hr>
|
</div><hr>
|
||||||
|
|
||||||
<h3 style="color:#fff">About this channel</h3>
|
<h3 style="color:#fff">About this channel</h3>
|
||||||
|
<br><br> <hr>
|
||||||
<p style="color:#fff"><%-desc.replace(/\n/g, " <br> ")%></p>
|
<p style="color:#fff"><%-desc.replace(/\n/g, " <br> ")%></p>
|
||||||
<br><hr>
|
<br><br>
|
||||||
<a href="https://youtube.com/channel/<%=ID%>">view the channel on youtube</a>
|
<h3 style="color:#fff">Uploads</h3>
|
||||||
|
<div align="center">
|
||||||
|
|
||||||
|
<div class="video-grid">
|
||||||
|
<% tj.Channel.Contents.ItemSection.ItemSection.Video.forEach(x => { %>
|
||||||
|
<a href="/watch?v=<%- x.id %>" class="video">
|
||||||
|
<div class="thumbnail" style="background-image: url('https://i.ytimg.com/vi/<%- x.id %>/hqdefault.jpg?sqp=-oaymwEjCNACELwBSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLAWzSgJiToCNsG9Rwj3y-p3XN9AxQ')"><span class="video-length"><%- x.duration %></span></div>
|
||||||
|
<div class="info">
|
||||||
|
<span class="title max-lines-2"><%- x.Title %></span>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<span><%- x.views %> views</span>
|
||||||
|
<span><%- x.uploadedAt %></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
<% }) %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue