static html directory

This commit is contained in:
Davide Alberani 2015-03-14 12:47:43 +01:00
parent 9591c68bf2
commit b67354c67a
2 changed files with 16 additions and 0 deletions

1
static/html/README.txt Normal file
View file

@ -0,0 +1 @@
Put here your static HTML files.

15
static/html/index.html Normal file
View file

@ -0,0 +1,15 @@
<!doctype html>
<html ng-app>
<head>
<script src="/static/js/angular.min.js"></script>
<title>Event Man(ager)</title>
</head>
<body>
<div>
<label>Name:</label>
<input type="text" ng-model="yourName" placeholder="Enter a name here">
<hr>
<h1>Hello {{yourName}}!</h1>
</div>
</body>
</html>