This repository has been archived on 2025-12-28. You can view files and clone it, but cannot push or open issues or pull requests.
inkletblot-forum-com-v1/index.html

38 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title> Inklet's Space </title>
<meta charset="utf-8">
<meta name="description" content="Where to find Ink's things.">
<meta name="keywords" content="html,forms,css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Solomon Laing" />
<meta name="content" content="this is very meta" />
<link rel="stylesheet" href="/styles/h5.css">
<link rel="icon" type="image/ico" href="favicon.ico">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.7.2/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.7.2/angular-route.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.7.2/angular-animate.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.7.2/angular-cookies.js"></script>
<script src="./scripts/main.js"></script>
<script src="./scripts/auth.controllers.js"></script>
<script src="./scripts/forum.controller.js"></script>
</head>
<body ng-app="daddy" ng-controller="bodyCtrlr" ng-init="setForum()">
<header ng-controller="headerCtrlr" ng-include="'views/header.html'">
</header>
<nav ng-controller="navCtrlr" ng-include="'views/nav.html'"></nav> <!-- have this so that the top of the page has a border. -->
<main ng-view>
</main>
<footer ng-include="'views/footer.html'">
</footer>
</body>
</html>