freeCodeCamp/views/layout.jade

24 lines
703 B
Plaintext

doctype html
html
head
meta(charset='utf-8')
meta(http-equiv='X-UA-Compatible', content='IE=edge')
meta(name='viewport', content='width=device-width, initial-scale=1.0')
meta(name='description', content='')
meta(name='author', content='')
title #{title} - Starter Template for Bootstrap
link(href='/css/styles.css?v=#{cacheBuster}', rel='stylesheet')
script(src='/js/lib/jquery-2.1.0.min.js?v=#{cacheBuster}')
script(src='/js/lib/bootstrap.min.js?v=#{cacheBuster}')
script(src='/js/main.js?v=#{cacheBuster}')
body
#wrap
include partials/navigation
.container
include partials/flash
block content
include partials/footer