-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
30 lines (30 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<title>Ancilla</title>
<meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="jspm_packages/npm/[email protected]/css/font-awesome.min.css">
<link rel="stylesheet" href="jspm_packages/github/twbs/[email protected]/css/bootstrap.min.css">
<link rel="stylesheet" href="index.css">
</head>
<body aurelia-app="boot.aurelia">
<!-- Splash Screen -->
<div class="splash center-align">
<h1>Ancilla</h1>
<h5>powered by
<a href="http://aurelia.io/"><span class="label label-primary">Aurelia</span></a>
<a href="http://getbootstrap.com"><span class="label label-info">Bootstrap</span></a>
<a href="https://fortawesome.github.io"><span class="label label-default">Font-awesome</span></a>
<a href="http://www.getbreezenow.com/"><span class="label label-warning">Breeze</span></a>
</h5>
<i class="fa fa-cog fa-spin fa-5x"></i>
</div>
<!-- SystemJS -->
<script src="jspm_packages/system.js"></script>
<script src="config.jspm.js"></script>
<script src="config.ancilla.js"></script>
<script>
System.import('aurelia-bootstrapper');
</script>
</body>
</html>