-
Notifications
You must be signed in to change notification settings - Fork 8
/
plugin.html
68 lines (50 loc) · 2.17 KB
/
plugin.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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.5">
<!-- title and icon -->
<title>MG-RAST</title>
<link rel="icon" href="images/MGRAST_favicon.ico" type="image/x-icon">
<!-- default js -->
<script src="Retina/js/jquery.min.js"></script>
<script src="Retina/js/stm.js"></script>
<script src="Retina/js/retina.js"></script>
<script src="Retina/js/bootstrap.min.js"></script>
<!-- config -->
<script src="js/config.js"></script>
<!-- bootstrap style -->
<link rel="stylesheet" type="text/css" href="Retina/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="Retina/css/bootstrap-responsive.min.css">
<link rel="stylesheet" type="text/css" href="css/mgrast.css">
<!-- page init js -->
<script type="text/javascript" src="js/plugin.js"></script>
<!-- Google Analytics -->
<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-56018972-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body style="padding: 0px;">
<!-- header bar -->
<div class="header">
<!-- logo -->
<div style="width: 235px; float: left; margin-right: 25px;">
<img src="images/MGRAST_logo.png" style="float: left; height: 59px; margin-top: 3px; cursor: pointer;" onclick="window.location='index.html?stay=1';">
</div>
<!-- title space -->
<div style="float: left; color: white; font-weight: lighter; position: relative; top: 15px; font-size: 40px;" id="pageTitle"></div>
</div>
<div style="height: 80px;" class="visible-desktop"></div>
<div style="height: 120px;" class="hidden-desktop"></div>
<!--border layout -->
<div class="row-fluid">
<!-- main content -->
<div id="content"></div>
</div>
</body>
</html>