28 lines
1,003 B
HTML
28 lines
1,003 B
HTML
<!doctype html>
|
|
<html lang="en" ng-controller="indexController as index">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
|
|
<meta name="msapplication-tap-highlight" content="no">
|
|
<meta name="format-detection" content="telephone=no">
|
|
<link rel="stylesheet" type="text/css" href="css/ionic.min.css">
|
|
<link rel="stylesheet" type="text/css" href="css/copay.css">
|
|
<title>{{index.appConfig.name}} - {{index.appConfig.description}}</title>
|
|
<link rel="shortcut icon" href="img/favicon.ico">
|
|
</head>
|
|
<!-- <body ng-cloak class="ng-cloak"> -->
|
|
<body >
|
|
|
|
<ion-nav-view name="main"></ion-nav-view>
|
|
|
|
<script src="lib/ionic.bundle.min.js"></script>
|
|
<script src="lib/angular.js"></script>
|
|
|
|
<!-- DO NOT DELETE THIS COMMET -->
|
|
<!-- PLACEHOLDER: CORDOVA SRIPT -->
|
|
|
|
<script src="js/copay.js"></script>
|
|
|
|
</body>
|
|
</html>
|