-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (80 loc) · 2.5 KB
/
index.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Standard Meta -->
<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.0, maximum-scale=1.0">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.3.0/semantic.min.css">
<title>MyFirstApp</title>
<script type="text/javascript">
/**
* Global settings to overide default values
*/
window.SETTINGS = {
appName: 'MyFirstApp', // default: app, required for generate binary installation path
binDir: 'packages', // default: packages, required for generate binary installation path
// appData: 'app.packages.json', // default: app.packages.json, required for read data and render
// getReleaseTitle: function(item) {
// return 'Sprint #' + item.sprint;
// },
// getBinPath: function(os, item) {
// if (os === 'ios') {
// return 'ios.ipa';
// }
// return 'android.apk';
// }
} /* */
</script>
<style type="text/css">
body {
background-color: #FFFFFF;
}
.ui.menu .item img.logo {
margin-right: 1.5em;
}
.main.container {
margin-top: 6em;
}
.ui.header {
margin-bottom: 1em;
}
.wireframe {
margin-top: 2em;
}
.ui.footer.segment {
margin: 5em 0em 0em;
padding: 5em 0em;
}
.ui.footer .copyright a {
color: #ffffff;
}
</style>
</head>
<body>
<div class="ui fixed inverted menu">
<div class="ui container">
<a href="#" class="header item">
MyFirstApp
</a>
<a href="#" class="item">Release Packages</a>
</div>
</div>
<div class="ui main text container">
<h1 class="ui header">MyFirstApp Mobile Application Release</h1>
<!-- <p>This is a basic fixed menu template using fixed size containers.</p> -->
<div id="app"></div>
</div>
<div class="ui inverted vertical footer segment">
<div class="ui center aligned container">
<div class="ui horizontal inverted small divided link list">
<a class="item" href="#">Contact Us</a>
<a class="item" href="#">Terms and Conditions</a>
<a class="item" href="#">Privacy Policy</a>
</div>
<p class="copyright">Made with <a href="https://vuejs.org/">Vue.js</a> and <a href="https://semantic-ui.com/">Semantic UI</a> at <a href="https://ngoclb.com">somewhere in Saigon</a>.</p>
</div>
</div>
<script src="dist/build.js"></script>
</body>
</html>