1
0
Fork 0
mirror of https://git.sr.ht/~cadence/cloudtube synced 2026-03-02 02:31:35 +00:00

Add channels page

This commit is contained in:
Cadence Ember 2020-08-30 01:21:48 +12:00
parent fc8b54d07b
commit b9b1463cff
No known key found for this signature in database
GPG key ID: 128B99B1B74A6412
6 changed files with 152 additions and 0 deletions

28
pug/channel.pug Normal file
View file

@ -0,0 +1,28 @@
extends includes/layout.pug
include includes/video-list-item.pug
block content
main.channel-page
- const banner = data.authorBanners.slice(-1)[0]
if banner
.banner
img(src=banner.url width=banner.width height=banner.height alt="").banner-image
.channel-data
.info
- const thumbnail = data.authorThumbnails.slice(-1)[0]
if thumbnail
.logo
img(src=thumbnail.url width=thumbnail.width height=thumbnail.height alt="").thumbnail-image
.about
.name= data.author
.subscribers= data.second__subCountText || `${data.subCount} subscribers`
form(method="post" action=`/formapi/subscribe/${data.authorId}`).subscribe
button.subscribe-button.base-border-look Subscribe
.description!= data.descriptionHtml
.videos
each video in data.latestVideos
.channel-video
+video_list_item(video)