mirror of
https://codeberg.org/tacerus/teddit.git
synced 2025-02-17 23:00:38 +01:00
Merge pull request 'Fixed: Incorrect theme for some pages' (#180) from meyagci/teddit:main into main
Reviewed-on: https://codeberg.org/teddit/teddit/pulls/180
This commit is contained in:
commit
ed4c99fbbc
@ -3,7 +3,7 @@ html
|
|||||||
head
|
head
|
||||||
title saved
|
title saved
|
||||||
include includes/head.pug
|
include includes/head.pug
|
||||||
body(class=""+ user_preferences.theme +"")
|
body(class=""+ (user_preferences.theme === 'auto' ? 'dark' : user_preferences.theme) + "")
|
||||||
include includes/topbar.pug
|
include includes/topbar.pug
|
||||||
if json === null
|
if json === null
|
||||||
h1 No saved posts
|
h1 No saved posts
|
||||||
|
@ -3,7 +3,7 @@ html
|
|||||||
head
|
head
|
||||||
title wiki /r/#{subreddit}
|
title wiki /r/#{subreddit}
|
||||||
include includes/head.pug
|
include includes/head.pug
|
||||||
body(class=""+ user_preferences.theme +"")
|
body(class=""+ (user_preferences.theme === 'auto' ? 'dark' : user_preferences.theme) + "")
|
||||||
include includes/topbar.pug
|
include includes/topbar.pug
|
||||||
if json === null
|
if json === null
|
||||||
h1 Error occured
|
h1 Error occured
|
||||||
|
Loading…
x
Reference in New Issue
Block a user