This repository has been archived on 2024-01-30. You can view files and clone it, but cannot push or open issues or pull requests.
trev/nodejs/views/index.ejs
Stefan Sterz 3cea3bf323 add light weight styling and remove cdn dependency
Added Skeleton and some custom CSS. Set up folder for fonts and removed the dependecy on cdns for angular, boodstrap and angular ui router.
2016-01-13 23:46:12 +01:00

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>