-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (30 loc) · 1.34 KB
/
index.html
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
<html>
<head>
<link rel="stylesheet" type="text/css" href="static/css/3rdparty/bootstrap.css">
<link rel="stylesheet" type="text/css" href="static/css/style.css">
<link rel="stylesheet" type="text/css" href="static/icon-css/aalekh-icons.css">
</head>
<body>
<header id="head" class="d-flex align-items-center">
<span id="logo">
<img src="static/img/aalekh_logo.png" width="50px"> आलेख (AALEKH)
</span>
</header>
<div class="container-full">
<div class="row no-gutters">
<div id="routes-container" class="col-md-3">
<routelist></routelist>
</div>
<div id="docs-container" class="col-md-9 page">
<routedetail></routedetail>
<scenario></scenario>
</div>
</div>
</div>
<script type="text/javascript" src="static/js/3rdparty/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="static/js/3rdparty/bootstrap.bundle.min.js"></script>
<script type="text/javascript" src="static/js/3rdparty/riot.min.js"></script>
<script type="text/javascript" src="static/js/app.js"></script>
<script type="text/javascript" src="static/js/alltags.js"></script>
</body>
</html>