forked from IBM-Blockchain-Archive/marbles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarbles.jade
49 lines (34 loc) · 1.09 KB
/
marbles.jade
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
extends ./template/layout.jade
// --------------- Header -------------- //
block custom_header
script(src='/js/ui_events.js?v=#{bag.jshash}')
script(src='/js/websocket.js?v=#{bag.jshash}')
script(src='/js/startup.js?v=#{bag.jshash}')
script(src='/js/tx_story.js?v=#{bag.jshash}')
script(type='text/javascript').
$(document).ready(function(){
});
// --------------- Navigation Bar -------------- //
block navpanel
include ./template/nav.jade
// --------------- Main Stuff -------------- //
block content
#notificationsWrap
#noticeScrollWrap
#emptyNotifications.hint No Notifications
#notificationHandle
span.fa.fa-angle-down
#contentPanel
// --------------- Home Panel
include ./panel_home.jade
// --------------- Create Panel
include ./panel_create.jade
// --------------- Start Up Walk Through Panel
include ./panel_startup.jade
// --------------- Walk Transaction Panel
include ./panel_tx_story.jade
// --------------- Settings Panel
include ./panel_settings.jade
block footer
include ./template/blockchain.jade
include ./panel_audit.jade