teddit-reddit-frontend-alte.../views/index.pug

120 lines
4.6 KiB
Plaintext
Raw Normal View History

2020-11-17 21:44:32 +01:00
doctype html
html
head
title teddit
include includes/head.pug
2020-11-21 13:50:12 +01:00
body(class=""+ user_preferences.theme +"")
2020-11-17 21:44:32 +01:00
include includes/topbar.pug
if json === null
h2 error
p #{JSON.stringify(http_status_code)}
p #{JSON.stringify(http_statustext)}
else
header
a(href="/", class="main")
h1 teddit
.bottom
ul.tabmenu
li(class=!sortby || sortby == 'hot' ? 'active' : '')
a(href="/") hot
li(class=sortby === 'new' ? 'active' : '')
a(href="/new") new
li(class=sortby === 'rising' ? 'active' : '')
a(href="/rising") rising
li(class=sortby === 'controversial' ? 'active' : '')
a(href="/controversial") controversial
li(class=sortby === 'top' ? 'active' : '')
a(href="/top") top
2020-12-05 17:28:12 +01:00
if !before && !after && sortby === 'hot'
#intro
h1 Welcome to teddit
h2 the alternative, privacy respecting, front page of internet.
#links.sr
2020-11-17 21:44:32 +01:00
if sortby === 'top' || sortby === 'controversial'
details
summary
if past === 'hour'
span links from: past hour
2020-11-30 16:36:10 +01:00
if past === 'day'
span links from: past 24 hours
2020-11-17 21:44:32 +01:00
if past === 'week'
span links from: past week
if past === 'month'
span links from: past month
if past === 'year'
span links from: past year
if past === 'all'
span links from: all time
ul
li(class=past === 'hour' ? 'active' : '')
a(href="?t=hour") past hour
2020-11-30 16:36:10 +01:00
li(class=past === 'day' ? 'active' : '')
a(href="?t=day") past 24 hours
2020-11-17 21:44:32 +01:00
li(class=past === 'week' ? 'active' : '')
a(href="?t=week") past week
li(class=past === 'month' ? 'active' : '')
a(href="?t=month") past month
li(class=past === 'year' ? 'active' : '')
a(href="?t=year") past year
li(class=past === 'all' ? 'active' : '')
a(href="?t=all") all time
each link in json.links
.link
.upvotes
.arrow
2020-11-17 21:44:32 +01:00
span #{kFormatter(link.ups)}
.arrow.down
2020-11-17 21:44:32 +01:00
.image
if(link.images)
if link.is_self_link
a(href="" + link.permalink + "")
2020-12-05 17:31:31 +01:00
img(src=""+ link.images.thumb +"", alt="")
2020-11-17 21:44:32 +01:00
else
a(href="" + link.url + "", rel="noopener noreferrer")
2020-12-05 17:31:31 +01:00
img(src=""+ link.images.thumb +"", alt="")
2020-11-17 21:44:32 +01:00
else
a(href="" + link.permalink + "")
.no-image no image
2020-11-17 21:44:32 +01:00
.entry
.title
if link.is_self_link
a(href="" + link.permalink + "")
2020-12-02 17:02:32 +01:00
h2 #{cleanTitle(link.title)}
2020-11-17 21:44:32 +01:00
span (#{link.domain})
else
a(href="" + link.url + "", rel="noopener noreferrer")
2020-12-02 17:02:32 +01:00
h2 #{cleanTitle(link.title)}
2020-11-17 21:44:32 +01:00
span (#{link.domain})
.meta
p.submitted submitted
span(title="" + toUTCString(link.created) + "") #{timeDifference(link.created)} by
if link.author === '[deleted]'
span(class="deleted") [deleted]
else
a(href="/u/" + link.author + "")
| #{link.author}
2020-11-17 21:44:32 +01:00
span(class="to") to
a(href="/r/" + link.subreddit + "")
| #{link.subreddit}
2020-12-23 16:55:37 +01:00
.links
if link.over_18
span.tag.nsfw NSFW
2020-11-17 21:44:32 +01:00
a(href="" + link.permalink + "", class="comments")
2020-11-30 16:55:52 +01:00
| #{link.num_comments} comments
2020-12-01 16:32:57 +01:00
#search
2020-11-17 21:44:32 +01:00
form(action="/r/all/search", method="GET")
div
label(for="q") search
input(type="text", name="q", id="q", placeholder="search")
2020-11-17 21:44:32 +01:00
div
label(for="nsfw") include NSFW results
input(type="checkbox", name="nsfw", id="nsfw", checked="checked")
input(type="submit", value="search")
if json.info.before || json.info.after
2021-01-04 12:43:14 +01:00
.view-more-links
2020-11-17 21:44:32 +01:00
if json.info.before && !subreddit_front
a(href="/r/all/" + sortby + "?t="+ (past ? past : '') +"&before=" + json.info.before + "") prev
if json.info.after
2020-12-28 21:45:17 +01:00
a(href="/r/all/" + sortby + "?t=" + (past ? past : '') + "&after=" + json.info.after + "") next
include includes/footer.pug