-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 1.24 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
<!DOCTYPE html>
<html ng-app="Geneysis" ng-controller="MainController" ng-cloak>
<head>
<meta charset="UTF-8">
<title>Geneysis</title>
<link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="css/geneysis.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<div class="project-info">
<div class="project-info-container">
<h3 style="margin:0px;">{{project.name}}</h3>
<hr>
<p>Created: {{project.created.toLocaleString()}}</p>
<p>Last Update: {{project.updated.toLocaleString()}}</p>
<p>Phages: {{project.phages.length}}</p>
<p ng-if="project.events.length == 0">No events yet!</p>
<p ng-repeat="event in project.events">Event: {{event.type + ' : ' + event.description}}</p>
</div>
</div>
<div class="main-view" ng-style="{width: mainWidth + 'px'}" >
<div class="main-view-container" ng-view>
</div>
</div>
</body>
<script src="node_modules/angular/angular.min.js"></script>
<script src="js/electangular.js"></script>
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
</html>