freeCodeCamp/views/layout.jade

22 lines
574 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='')
2014-03-28 17:40:55 +00:00
meta(name='csrf-token', content=_csrf)
meta(name='author', content='')
2014-10-14 01:00:37 +00:00
script(src='https://cdn.socket.io/socket.io-1.0.0.js')
2014-10-13 21:14:51 +00:00
title #{title} | Free Code Camp
!= css('styles')
body
2014-06-01 14:49:18 +00:00
include partials/navbar
2014-05-11 07:48:19 +00:00
.container
include partials/flash
block content
2014-03-17 07:00:18 +00:00
include partials/footer
2014-03-09 17:53:12 +00:00
2014-10-13 23:01:52 +00:00
!= js('application')