updated github path
[oweals/finalsclub.git] / views / layout.jade
1 !!!
2 html
3   head
4     title FinalsClub.org
5
6     link(rel='stylesheet', href='/stylesheets/fc2.css')
7     script(type='text/javascript', src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js')
8     script(type='text/javascript', src='/javascripts/es5-shim.min.js')
9     script(type='text/javascript', src='/socket.io/socket.io.js')
10
11     - if ( 'undefined' !== typeof stylesheets )
12         - each stylesheet in stylesheets
13             link( rel = 'stylesheet', href = '/stylesheets/#{ stylesheet }' )
14
15     - if ( 'undefined' !== typeof javascripts )
16         - each javascript in javascripts
17             script( type = 'text/javascript', src = '/javascripts/#{ javascript }' )
18
19     meta(name="viewport", content="width=device-width,user-scalable=no,minimum-scale=1.0,maximum-scale=1.0,initial-scale=1.0")
20     meta(name="apple-touch-icon", href="")
21     meta(name="icon", href="")
22
23   body
24     include masthead
25     != messages()
26     != body
27     include footer