-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.ejs
More file actions
34 lines (32 loc) · 1.05 KB
/
index.ejs
File metadata and controls
34 lines (32 loc) · 1.05 KB
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
<!--
* @ Licence: OwnPlot, the OwnTech data plotter. Copyright (C) 2022. Matthias Riffard & Guillaume Arthaud - OwnTech Foundation.
Delivered under GNU Lesser General Public License Version 2.1 (https://opensource.org/licenses/LGPL-2.1)
* @ Website: https://www.owntech.org/
* @ Mail: owntech@laas.fr
* @ Create Time: 2022-08-30 09:31:24
* @ Modified by: Jean Alinei
* @ Modified time: 2022-09-07 13:47:28
* @ Description:
-->
<%- include('template/header'); %>
<main class="vh-100 vw-100">
<div class="px-2 py-2 d-flex flex-row justify-content-between" id="topBar">
<%- include('template/navBar'); %>
<div class="px-3" id="portBar">
<%- include('template/portBar'); %>
</div>
</div>
<div class="row" id="appBody">
<div class="split">
<div class="col-3 px-0" id="sideBar">
<%- include('template/tabs'); %>
</div>
<div class="col-9 ps-0" id="chartAndTerminalDiv">
<%- include('template/apps'); %>
<%- include('template/myTerminal'); %>
</div>
</div>
</div>
</main>
<%- include('template/footer'); %>
<% ejse.stopListening() %>