Files
freeCodeCamp/server/views/layout-wide.jade
Berkeley Martinez e72ad8c513 fix(ui): Fix flash shown to user on page refresh
Store user theme preference on user object.
Must be logged in to use themes
2016-05-12 18:52:03 -07:00

17 lines
439 B
Plaintext

doctype html
html(lang='en')
head
include partials/meta
include partials/stylesheets
if showAside
body.map-aside-body
include partials/scripts
block content
else
body.no-top-and-bottom-margins(class=theme !== 'default' ? theme : '')
include partials/scripts
include partials/navbar
include partials/flash
block content
include partials/footer