freeCodeCamp/server/views/redirect-https.jade

16 lines
361 B
Plaintext
Raw Normal View History

2015-07-01 21:35:15 +00:00
doctype html
html(lang='en')
head
include partials/small-head
body.top-and-bottom-margins
include partials/navbar
.container
.row
.panel.panel-info
p redirecting you... please wait...
include partials/footer
script.
setTimeout(function() {
window.location = 'http://freecodecamp.com'
}, 500);