webdev-assignment-2/index.html
Thomas Wade 0b077ec440 I don't even know anymore
Okay so there's a few things going on here:
 1. The main page has been split into pieces stored within views/
 2. The nav buttons are working and have a swanky animation to them
 3. Some other changes throughout that I've simply lost track of from not committing frequently enough
2018-10-18 18:59:34 +10:30

28 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html ng-app="app">
<head ng-controller="head">
<meta charset="UTF-8">
<meta name="keywords" content="yeet">
<meta name="author" content="Thomas Wade">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/default.css">
<title>{{title}}</title>
<script src="scripts/angular.min.js" type="application/javascript"></script>
<script src="scripts/angular-route.min.js" type="application/javascript"></script>
<script src="scripts/app.js" type="application/javascript"></script>
<base href="/">
</head>
<body>
<div class="rootContainer">
<ng-include src="'views/header.html'"></ng-include>
<div class="centreColumn">
<div class="contentContainer">
<ng-view></ng-view>
</div>
<ng-include src="'views/sidebar.html'"></ng-include>
<ng-include src="'views/footer.html'"></ng-include>
</div>
</div>
</body>
</html>