-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
863692a
commit 7672dc5
Showing
25 changed files
with
2,582 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
|
||
<link rel="stylesheet" href="./styles/css/bootstrap.css" /> | ||
<link rel="stylesheet" href="./styles/css/app.css" /> | ||
|
||
</head> | ||
<body ng-app="appName" ng-controller="homeCtrl" ng-init="name='hafiz'; | ||
email='[email protected]'; | ||
myCol='lightblue'; | ||
myCol2='pink'; | ||
themeClr='danger'; | ||
themeClr2='dark'; | ||
hslHue=215; hslSaturation=81; hslLightness=55"> | ||
<div ng-include="'views/shared/_navbar.html'"></div> | ||
|
||
<main class="container my-3"> | ||
<ui-view></ui-view> | ||
</main> | ||
|
||
<!-- // MAIN FOOTER --> | ||
<div ng-include="'views/shared/_footer.html'"></div> | ||
|
||
|
||
<!-- // JAVASCRIPT --> | ||
<script type="text/javascript" src="./scripts/angular.min.js"></script> | ||
<script src="./scripts/angular-ui-router.min.js"></script> | ||
<!-- <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular-animate.js"></script> --> | ||
<script src="./scripts/script.js"></script> | ||
|
||
|
||
</body> | ||
</html> |
Oops, something went wrong.