forked from ContactMe/ContactMe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·29 lines (27 loc) · 863 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>Contact Me</title>
<link rel="stylesheet" href="css/lib/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section class="app-container container">
<div class="panel panel-default">
<div class="panel-heading">
<h1 class="panel-title">
Contact Me
</h1>
</div>
<div id="contactMe" class="panel-body"></div>
</div>
</section>
<script src="js/lib/pretender.js"></script>
<script src="js/lib/jquery-1.10.2.js"></script>
<script src="js/lib/ember-1.10.0.debug.js"></script>
<script src="js/lib/ember-template-compiler-1.10.0.js"></script>
<script src="js/application.js"></script>
</body>
</html>