19 lines
786 B
Plaintext
19 lines
786 B
Plaintext
<body class="bg-darker">
|
|
<% include home/menuFirst.ejs %>
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<% include home/menuSide.ejs %>
|
|
<main id="pageTabContainer" class="col-md-9 ms-sm-auto col-lg-10 px-md-4">
|
|
<% (config.webBlocksPreloaded).forEach(function(block){ %>
|
|
<%- include(__dirname + '/web/pages/blocks/' +block + '.ejs') %>
|
|
<% }) %>
|
|
<% customAutoLoad.PageBlocks.forEach(function(block){ %>
|
|
<%- include(block) %>
|
|
<% }) %>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
<div style="display:none" id="temp"></div>
|
|
<a id="floating-back-button" class="go-back" style="display:none"><i class="fa fa-arrow-left"></i></a>
|
|
</body>
|