bigbluebutton-Github/labs/bbb-html5-client/views/layout.jade
Leonardo Crauss Daronco 519ac9ce0e First version of a single page html5 client app
Very simple by now, but with login working and switching to a (not yet implemented) session view.
2012-12-09 16:39:29 -02:00

22 lines
494 B
Plaintext
Executable File

!!! 5
html
head
block head
title= title
-// link(rel='stylesheet', href='/css/style.css')
-// link(rel='stylesheet', href='/css/jq-ui.css')
body
block content
#container
script(src='/js/lib/require/require-min.js')
- if (typeof(meetings) != 'undefined')
script(type='text/javascript')
define('configs', function() {
return {
bootstrappedMeetings: !{JSON.stringify(meetings)}
};
});
script(src='/js/main.js')