Files
freeCodeCamp/views/layout.jade

27 lines
845 B
Plaintext
Raw Normal View History

2014-01-03 04:47:31 -05: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-18 23:55:20 -05:00
title #{title} - Starter Template for Bootstrap
2014-01-28 01:45:45 -05:00
link(href='/css/lib/font-awesome.min.css?v=#{cacheBuster}', rel='stylesheet')
link(href='/css/lib/animate.css?v=#{cacheBuster}', rel='stylesheet')
2014-01-28 01:45:45 -05:00
link(href='/css/styles.css?v=#{cacheBuster}', rel='stylesheet')
2014-01-28 01:45:45 -05:00
script(src='/js/lib/jquery.js?v=#{cacheBuster}')
script(src='/js/lib/bootstrap.js?v=#{cacheBuster}')
script(src='/js/main.js?v=#{cacheBuster}')
body
2014-01-24 02:14:40 -05:00
#wrap
2014-01-28 20:03:41 +01:00
include partials/navigation
.container
2014-01-28 20:03:41 +01:00
include partials/flash
2014-01-24 02:14:40 -05:00
block content
2014-01-28 20:03:41 +01:00
include partials/footer