-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (102 loc) · 4.85 KB
/
index.html
File metadata and controls
114 lines (102 loc) · 4.85 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
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="OMRON Micro Devices - Main page">
<meta name="author" content="">
<meta name="google-site-verification" content="BEQdnicEIiEcEHvH3K0khEVybtrqY_obHGvyCJrP5aw" />
<link rel="icon" href="images/favicon.ico">
<title>OMRON Micro Devices</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<!-- Custom styles for this template -->
<link href="css/custom.min.css" rel="stylesheet">
<link href="css/theme.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Fixed navbar -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">OMRON Micro Devices</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Products <span class="caret"></span></a>
<ul class="dropdown-menu">
<li class="dropdown-header">Environment Sensor : 2JCIE-BL01</li>
<li><a href="products/2jcie-bl01/communication_if_manual.html">Communication Interface Manual</a></li>
<!-- <li role="separator" class="divider"></li> -->
</ul>
</li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<!-- Content -->
<div class="container theme-showcase" role="main">
<p>
<div class="row">
<div class="col-xs-3">
<img src="images/bsc.png" class="img-rounded img-responsive" alt="Logo">
</div>
<div class="col-xs-9">
<h1>OMRON Micro Devices</h1>
<p class="lead">Resources & Samples</p>
</div>
</div>
</p>
<hr>
<div class="list-group">
<a href="#" class="list-group-item active">
<h4 class="list-group-item-heading">Environment Sensor : 2JCIE-BL01</h4>
<p class="list-group-item-text">Bluetooth sensor beacon that can collect seven types of environmental information such as temperature, humidity, light, and noise.</p>
</a>
<a href="./products/2jcie-bl01/communication_if_manual.html" class="list-group-item">
<h4 class="list-group-item-heading">Communication Interface Manual</h4>
<p class="list-group-item-text">Full description of Bluetooth low energy GAP/GATT</p>
</a>
<a href="https://github.com/OmronMicroDevices/envsensor-observer-py" class="list-group-item">
<h4 class="list-group-item-heading">envsensor-observer-py</h4>
<p class="list-group-item-text">Python Bluetooth low energy observer example for OMRON Environment Sensor (2JCIE-BL01)</p>
</a>
</div>
<div id="markdown_content" src="./index.md"> </div>
</div> <!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')</script>
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/marked.js"></script>
<script>
$(document).ready(function(){
var target = $("#markdown_content");
$.ajax({
url: target[0].attributes["src"].value,
}).success(function(data){
target.append(marked(data));
}).error(function(data){
target.append("This content failed to load.");
});
});
</script>
</body>
</html>