Files
freeCodeCamp/views/layout.jade

30 lines
935 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='')
2014-03-28 13:40:55 -04:00
meta(name='csrf-token', content=_csrf)
meta(name='author', content='')
2014-10-13 14:14:51 -07:00
title #{title} | Free Code Camp
!= css('styles')
body
2014-06-01 10:49:18 -04:00
include partials/navbar
2014-05-11 03:48:19 -04:00
.container
include partials/flash
block content
2014-03-17 03:00:18 -04:00
include partials/footer
2014-03-09 13:53:12 -04:00
2014-10-19 17:50:48 -07:00
!= js('application')
2014-10-19 18:23:05 -07:00
script.
2014-10-19 17:50:48 -07:00
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55446531-1', 'auto');
2014-10-19 18:23:05 -07:00
ga('send', 'pageview');