Wallet/app-template/index.html

40 lines
1.5 KiB
HTML
Raw Normal View History

2016-07-14 18:55:46 -03:00
<!doctype html>
2016-08-18 10:08:23 -03:00
<html lang="en">
2016-08-19 09:51:13 -03:00
<head ng-controller="headController">
2015-03-06 12:00:10 -03:00
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
2017-11-17 12:39:21 +09:00
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover">
2015-03-06 12:00:10 -03:00
<meta name="msapplication-tap-highlight" content="no">
2015-11-11 16:35:19 -03:00
<meta name="format-detection" content="telephone=no">
2016-12-27 15:38:57 -03:00
<link rel="stylesheet" type="text/css" href="css/main.css">
2017-07-06 14:39:35 +09:00
<link rel="stylesheet" type="text/css" href="css/chartist.css">
2017-06-16 11:50:13 +09:00
<link rel="stylesheet" type="text/css" href="css/bitcoin.com.css">
<link rel="stylesheet" type="text/css" href="css/icomoon.css">
<title>*USERVISIBLENAME* - *PURPOSELINE*</title>
2016-10-18 16:10:12 -03:00
<link rel="shortcut icon" href="img/app/favicon.ico">
2015-03-06 12:00:10 -03:00
</head>
2016-08-17 15:23:17 -03:00
<body>
2015-03-06 12:00:10 -03:00
2016-10-20 19:24:14 -03:00
<!-- Workaround to prevent autofill -->
<div style="display: none;">
<input type="text"
id="PreventChromeAutocomplete"
name="PreventChromeAutocomplete"
autocomplete="address-level4" />
</div>
<ion-nav-view>
<incoming-data-menu></incoming-data-menu>
</ion-nav-view>
2016-05-13 10:49:36 -03:00
<script src="lib/ionic.bundle.min.js"></script>
2016-12-27 15:38:57 -03:00
<script src="lib/angular-components.js"></script>
2018-01-15 13:33:33 +09:00
<script src="lib/bitcoin-cash-js.js"></script>
2015-03-06 12:00:10 -03:00
2016-08-17 15:23:17 -03:00
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
2017-07-06 14:39:35 +09:00
<script src="js/moment.min.js"></script>
<script src="js/chartist.min.js"></script>
2016-12-27 15:38:57 -03:00
<script src="js/app.js"></script>
2015-03-06 12:00:10 -03:00
</body>
</html>