-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (26 loc) · 1.18 KB
/
index.html
File metadata and controls
34 lines (26 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" ng-app="spaceApplication" ng-controller="currentDateController">
<head>
<meta charset="utf-8" />
<title>AngularJS Space API Project</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<script src="https://code.angularjs.org/1.8.0/angular.js"></script>
<script src="https://code.angularjs.org/1.8.0/angular-route.min.js"></script>
<script src="app.js"></script>
</head>
<body>
<header>
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#">AngularJS Space API Project</a>
</div>
<div class="nav navbar-nav navbar-right text-primary border border-primary p-1 font-weight-bold">{{currentDate | date: 'MMM d, yyyy'}}</div>
</div>
</nav>
</header>
<div class="container">
<div ng-view></div>
</div>
</body>
</html>