2020-11-17 21:44:32 +01:00
|
|
|
|
doctype html
|
|
|
|
|
html
|
|
|
|
|
head
|
|
|
|
|
title teddit
|
|
|
|
|
include includes/head.pug
|
2021-01-27 17:39:12 +01:00
|
|
|
|
body(class=""+ (user_preferences.theme === 'auto' ? 'dark' : user_preferences.theme) + "")
|
2020-11-17 21:44:32 +01:00
|
|
|
|
include includes/topbar.pug
|
|
|
|
|
if json === null
|
2021-03-28 16:35:45 +02:00
|
|
|
|
.reddit-error
|
|
|
|
|
h2 Error
|
|
|
|
|
p #{JSON.stringify(http_status_code)}
|
|
|
|
|
p #{JSON.stringify(http_statustext)}
|
|
|
|
|
if http_status_code == "401" || http_status_code == "503"
|
|
|
|
|
p This error is probably caused because Reddit itself is down or having server issues.
|
|
|
|
|
p Checking <a href="https://www.redditstatus.com">https://www.redditstatus.com</a> might give some information.
|
2021-03-28 16:55:16 +02:00
|
|
|
|
if http_status_code == "404"
|
|
|
|
|
p The resource you were looking for was not found.
|
2020-11-17 21:44:32 +01:00
|
|
|
|
else
|
2021-01-09 12:54:26 +01:00
|
|
|
|
- var subreddit = ''
|
|
|
|
|
if(user_preferences.subbed_subreddits && Array.isArray(user_preferences.subbed_subreddits))
|
|
|
|
|
- subreddit = '/r/' + user_preferences.subbed_subreddits.join('+')
|
2020-11-17 21:44:32 +01:00
|
|
|
|
header
|
|
|
|
|
a(href="/", class="main")
|
|
|
|
|
h1 teddit
|
|
|
|
|
.bottom
|
|
|
|
|
ul.tabmenu
|
|
|
|
|
li(class=!sortby || sortby == 'hot' ? 'active' : '')
|
2021-01-09 12:54:26 +01:00
|
|
|
|
a(href="" + subreddit + "/") hot
|
2020-11-17 21:44:32 +01:00
|
|
|
|
li(class=sortby === 'new' ? 'active' : '')
|
2021-01-09 12:54:26 +01:00
|
|
|
|
a(href="" + subreddit + "/new") new
|
2020-11-17 21:44:32 +01:00
|
|
|
|
li(class=sortby === 'rising' ? 'active' : '')
|
2021-01-09 12:54:26 +01:00
|
|
|
|
a(href="" + subreddit + "/rising") rising
|
2020-11-17 21:44:32 +01:00
|
|
|
|
li(class=sortby === 'controversial' ? 'active' : '')
|
2021-01-09 12:54:26 +01:00
|
|
|
|
a(href="" + subreddit + "/controversial") controversial
|
2020-11-17 21:44:32 +01:00
|
|
|
|
li(class=sortby === 'top' ? 'active' : '')
|
2021-01-09 12:54:26 +01:00
|
|
|
|
a(href="" + subreddit + "/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
|
2021-05-24 20:39:28 +02:00
|
|
|
|
include components/link.pug
|
2021-01-23 11:23:14 +01:00
|
|
|
|
if json.info.before || json.info.after
|
|
|
|
|
.view-more-links
|
|
|
|
|
- var subreddit = 'all'
|
|
|
|
|
if(user_preferences.subbed_subreddits && Array.isArray(user_preferences.subbed_subreddits))
|
|
|
|
|
- subreddit = user_preferences.subbed_subreddits.join('+')
|
|
|
|
|
if json.info.after
|
|
|
|
|
a(href="/r/" + subreddit + "/" + sortby + "?t=" + (past ? past : '') + "&after=" + json.info.after + "") next ›
|
2020-12-01 16:32:57 +01:00
|
|
|
|
#search
|
2020-11-17 21:44:32 +01:00
|
|
|
|
form(action="/r/all/search", method="GET")
|
2020-12-30 22:51:20 +01:00
|
|
|
|
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")
|
2021-01-24 12:54:13 +01:00
|
|
|
|
include includes/footer.pug
|