-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsource.html
More file actions
111 lines (104 loc) · 4.21 KB
/
source.html
File metadata and controls
111 lines (104 loc) · 4.21 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!doctype html>
<html lang="en">
<head>
<!-- Title block allowing child pages to override -->
<title>Admo Gesture Platform</title>
<link rel="shortcut icon" type="image/ico" href="assets/img/favicon.ico" />
<!-- Styles -->
<link href="assets/css/gridism.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="assets/css/style.min.css" rel="stylesheet" type="text/css" media="all"/>
<!-- Style block allowing child pages to inject their own styles -->
<script type="text/javascript">
var MTIProjectId='74645da5-ce78-404e-b8f0-bc4b1ad70f84';
(function() {
var mtiTracking = document.createElement('script');
mtiTracking.type='text/javascript';
mtiTracking.async='true';
mtiTracking.src=('https:'==document.location.protocol?'https:':'http:')+'//fast.fonts.net/t/trackingCode.js';
(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild( mtiTracking );
})();
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-39107940-2', 'admoexperience.github.io');
ga('send', 'pageview');
</script>
<link rel="icon" href="<%= asset_path('favicon.png')%>" type="image/png" />
<script src="assets/scripts/jquery-1.10.2.min.js"></script>
</head>
<body>
<div id="wrapper">
<!-- Include -->
<div class="admocom">
<div class="container">
<div class="header_logo">
<a href="index.html"></a>
</div>
<nav class="menu visible">
<ul>
<li ><a href="index.html">Home</a></li>
<li ><a href="tech.html">Tech</a></li>
<li class="selected"><a href="source.html">Open Source</a></li>
<li ><a href="apps.html">Apps</a></li>
<li ><a href="about.html">About</a></li>
</ul>
</nav>
</div>
</div>
<!-- Content block, child page inject content -->
<div class="page">
<section>
<h1>Components</h1>
<ul class="features">
<li><a href="https://github.com/admoexperience/admo-kinect">
<img src="assets/img/source/api-icon.png" width="120" height="120" alt="" />
Gesture Engine
</a></li>
<li><a href="apps.html">
<img src="assets/img/source/apps-icon.png" width="120" height="120" alt="" />
Apps
</a></li>
<li><a href="https://github.com/admoexperience/admo-cms">
<img src="assets/img/source/cms-icon.png" width="120" height="120" alt="" />
CMS
</a></li>
<li><a href="https://github.com/admoexperience/dashboard">
<img src="assets/img/source/dashboard-icon.png" width="120" height="120" alt="" />
Dashboard
</a></li>
<li><a href="https://cms.admoexperience.com/docs/#!/unit">
<img src="assets/img/source/api-icon.png" width="120" height="120" alt="" />
API
</a></li>
<li><a href="https://github.com/admoexperience/generator-admo">
<img src="assets/img/source/tools-icon.png" width="120" height="120" alt="" />
App Generator
</a></li>
</ul>
</section>
</div>
<div class="gray">
<div class="page">
<section>
<h1>Architecture</h1>
<p>Below is a brief overview of the Admo framework.</p>
<img class="architecture" src="assets/img/architecture.png" width="510" height="880" alt="" />
</section>
</div>
</div>
<footer>
<div class="fireid-brand">
<a href="http://www.fireid.com">
<img src="assets/img/fireid-footer.png" alt="FireID"/>
<p>Powered by FireID</p>
</a>
</div>
</footer>
</div>
<!-- Script block allowing child pages to inject their own scripts -->
<script src="app.js"></script>
</body>
</html>