mirror of
https://git.sr.ht/~cadence/cloudtube
synced 2024-11-10 02:27:29 +00:00
28 lines
813 B
Plaintext
28 lines
813 B
Plaintext
extends includes/layout.pug
|
|
|
|
include includes/video-list-item.pug
|
|
|
|
block head
|
|
title Subscriptions - CloudTube
|
|
|
|
block content
|
|
main.subscriptions-page
|
|
if hasSubscriptions
|
|
section
|
|
details.channels-details
|
|
summary #{channels.length} subscriptions
|
|
.channels-list
|
|
for channel in channels
|
|
a(href=`/channel/${channel.ucid}`).channel-item
|
|
img(src=channel.icon_url width=512 height=512 alt="").thumbnail
|
|
span.name= channel.name
|
|
|
|
each video in videos
|
|
.subscriptions-video
|
|
+video_list_item(video)
|
|
else
|
|
.no-subscriptions
|
|
h2 You have no subscriptions.
|
|
p Subscribing to a channel makes its videos appear here.
|
|
p You can find the subscribe button on channels and videos.
|