Thomas Wade a205dc9c7e Add FAQ functionality and some style tweaks
Switched to HTML5-style routing
Reworked Express backend to accommodate HTML5-style routing
Links are now highlighted with a black background and white foreground
Reworked spacing on H1s
Added classes to nav buttons
2018-10-30 17:33:24 +10:30

31 lines
1.4 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">
<link rel="stylesheet" href="styles/ng-tags-input.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/angular-sanitize.min.js" type="application/javascript"></script>
<script src="scripts/marked.min.js" type="application/javascript"></script>
<script src="scripts/ng-tags-input.min.js" type="application/javascript"></script>
<script src="scripts/app.js" type="application/javascript"></script>
</head>
<body>
<div class="rootContainer">
<ng-include src="'partials/header.html'"></ng-include>
<div class="centreColumn">
<div class="contentContainer">
<ng-view></ng-view>
</div>
<ng-include src="'partials/sidebar.html'"></ng-include>
</div>
<ng-include src="'partials/footer.html'"></ng-include>
</div>
</body>
</html>