This repository has been archived by the owner on May 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (46 loc) · 1.63 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!doctype html>
<html ng-app="pbc">
<head>
<title>pbc</title>
<link rel="stylesheet" href="css/pbs.css">
<link rel="stylesheet" href="https://ptpb.pw/static/default.css">
<link rel="icon" type="image/png" href="images/ptpb-512.png" sizes="512x512">
<link rel="icon" type="image/png" href="images/ptpb-128.png" sizes="128x128">
<link rel="icon" type="image/png" href="images/ptpb-32.png" sizes="32x32">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<script src="node_modules/angular/angular.js"></script>
<script src="node_modules/angular-route/angular-route.js"></script>
<script src="js/app.js"></script>
<script src="js/editor.js"></script>
</head>
<body class="under-nav" ng-controller="navController as nav">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse">
<navs></navs>
</div>
</div>
</nav>
<div class="container-fluid">
<div class="row">
<div class="col-xs-6">
<editor></editor>
</div>
<div class="col-xs-6">
<preview></preview>
</div>
</div>
<div ng-view>
</div>
</div>
</body>
</html>