59 lines
2.3 KiB
HTML
59 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<!--[if lt IE 7]>
|
|
<html lang="en" ng-app="myApp" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
|
<!--[if IE 7]>
|
|
<html lang="en" ng-app="myApp" class="no-js lt-ie9 lt-ie8"> <![endif]-->
|
|
<!--[if IE 8]>
|
|
<html lang="en" ng-app="myApp" class="no-js lt-ie9"> <![endif]-->
|
|
<!--[if gt IE 8]><!-->
|
|
<html lang="en" ng-app="myApp" class="no-js"> <!--<![endif]-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>File Upload Demo</title>
|
|
<meta name="description" content="">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
|
<link rel="stylesheet" href="app.css">
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
|
|
<div class="container-fluid">
|
|
<span class="navbar-brand">Menu</span>
|
|
<div class="navbar-collapse" id="navbarSupportedContent">
|
|
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
|
<li class="nav-item">
|
|
<a class="nav-link"
|
|
ng-class="{'active': $route.current.activetab == 'view1'}"
|
|
href="#!/view1">Upload/View</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link"
|
|
ng-class="{'active': $route.current.activetab == 'view2'}"
|
|
href="#!/view2">File List</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
|
|
<!--[if lt IE 7]>
|
|
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade
|
|
your browser</a> to improve your experience.</p>
|
|
<![endif]-->
|
|
|
|
<div class="content" ng-view></div>
|
|
|
|
<script src="lib/angular/angular.js"></script>
|
|
<script src="lib/angular-route/angular-route.js"></script>
|
|
<script src="app.js"></script>
|
|
<script src="core/core.module.js"></script>
|
|
<script src="core/filters/filesize.filter.js"></script>
|
|
<script src="core/file-list.service.js"></script>
|
|
<script src="view1/view1.js"></script>
|
|
<script src="view2/view2.js"></script>
|
|
</body>
|
|
</html>
|