-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.ejs
More file actions
27 lines (27 loc) · 1012 Bytes
/
Copy pathlayout.ejs
File metadata and controls
27 lines (27 loc) · 1012 Bytes
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
<%- partial('_partial/head') %>
<body>
<div id="container" q-class="show:isCtnShow">
<canvas id="anm-canvas" class="anm-canvas"></canvas>
<div class="left-col" q-class="show:isShow">
<%- partial('_partial/left-col', null, {cache: !config.relative_link}) %>
</div>
<div class="mid-col" q-class="show:isShow,hide:isShow|isFalse">
<%- partial('_partial/mobile-nav', null, {cache: !config.relative_link}) %>
<div id="wrapper" class="body-wrap">
<div class="menu-l">
<div class="canvas-wrap">
<canvas data-colors="#eaeaea" data-sectionHeight="100" data-contentId="js-content" id="myCanvas1" class="anm-canvas"></canvas>
</div>
<div id="js-content" class="content-ll">
<%- body %>
</div>
</div>
</div>
<%- partial('_partial/footer') %>
</div>
<%- partial('_partial/after-footer') %>
<%- partial('_partial/tools') %>
<%- partial('_partial/viewer') %>
</div>
</body>
</html>