freeCodeCamp/views/layout.jade

24 lines
703 B
Plaintext
Raw Normal View History

2014-01-03 09:47:31 +00:00
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='')
2013-11-19 04:55:20 +00:00
title #{title} - Starter Template for Bootstrap
2014-01-28 06:45:45 +00:00
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}')
2014-01-28 06:45:45 +00:00
script(src='/js/main.js?v=#{cacheBuster}')
body
2014-01-24 07:14:40 +00:00
#wrap
2014-01-28 19:03:41 +00:00
include partials/navigation
.container
2014-01-28 19:03:41 +00:00
include partials/flash
2014-01-24 07:14:40 +00:00
block content
2014-01-28 19:03:41 +00:00
include partials/footer