This repository has been archived by the owner on Sep 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index-cdn.html
37 lines (31 loc) · 1.78 KB
/
index-cdn.html
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
35
36
37
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ng="http://angularjs.org/" lang="en" ng-app="app">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Tubular">
<meta name="keywords" content="application, html5, angularjs, responsive, web api">
<meta name="author" content="Unosquare Labs">
<title>Tubular Boilerplate</title>
<!-- CSS (from CDN) -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/bootstrap@latest/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/font-awesome@latest/css/font-awesome.min.css" />
<link rel="stylesheet" href="//cdn.jsdelivr.net/tubular/latest/tubular-bundle.min.css" />
<link href="/css/app.css" rel="stylesheet">
<!-- JS (from CDN) -->
<script src="//cdn.jsdelivr.net/npm/angular@latest/angular.js"></script>
<script src="//cdn.jsdelivr.net/npm/angular-route@latest/angular-route.js"></script>
<script src="//cdn.jsdelivr.net/npm/angular-animate@latest/angular-animate.js"></script>
<script src="//cdn.jsdelivr.net/combine/npm/angular-ui-bootstrap@latest/dist/ui-bootstrap.min.js,npm/angular-ui-bootstrap@latest/dist/ui-bootstrap-tpls.min.js,npm/moment@latest"></script>
<!-- Angular Application files -->
<script src="//cdn.jsdelivr.net/npm/tubular@latest/dist/tubular-bundle.js"></script>
<script src="/js/app.js"></script>
</head>
<body ng-cloak>
<div ng-include="'/partials/menu.html'"></div>
<div class="container">
<ng-view></ng-view>
</div>
</body>
</html>