Stefan Sterz
3cea3bf323
Added Skeleton and some custom CSS. Set up folder for fonts and removed the dependecy on cdns for angular, boodstrap and angular ui router.
34 lines
No EOL
860 B
Text
34 lines
No EOL
860 B
Text
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Auto Home</title>
|
|
|
|
<link rel="stylesheet" href="/stylesheets/normalize.css">
|
|
<link rel="stylesheet" href="/stylesheets/skeleton.css">
|
|
<link rel="stylesheet" href="/stylesheets/style.css">
|
|
|
|
<script src="/javascripts/angular.min.js"></script>
|
|
<script src="/javascripts/angular-ui-router.min.js"></script>
|
|
<script src="/javascripts/angularApp.js"></script>
|
|
|
|
</head>
|
|
<body ng-app="autome">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="twelve columns">
|
|
<ui-view></ui-view>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script type="text/ng-template" id="/home.html">
|
|
<div class="lol">
|
|
<h1>Autome</h1>
|
|
<form ng-submit="toggleLight()" style="margin-top:30px;">
|
|
<button type="submit" class="button-primary">Light Switch</button>
|
|
</form>
|
|
</div>
|
|
</script>
|
|
|
|
</body>
|
|
</html> |