forked from davekinkead/scribe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 862 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html lang="en" ng-app="scribe">
<head>
<meta charset="utf-8">
<title>Scribe App</title>
<link type="text/css" rel="stylesheet" />
<link rel="stylesheet" href="css/app.css"/>
</head>
<body>
<div class="container">
<h3 class="banner"><a href="#" ng-link="">Scribe App</a></h3>
<section class="post" ng-view>
<div ng-bind-html-unsafe="post"></div>
</section>
</div>
<footer class="container">This little ditty of an app was lovingly crafted by <a href="https://lh3.googleusercontent.com/iFlnOZMc2W54RtuzWnV7W2RM4fwQdVrC01TwmJyeFlQ=s582-no">Pinkie Pie</a></footer>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>
<!-- In development use:
<script src="lib/angular/angular.js"></script>
-->
<script src="js/app.js"></script>
<script src="js/marked.js"></script>
</body>
</html>