-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathglobal.html
executable file
·123 lines (107 loc) · 6.11 KB
/
global.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
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
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>{{ page.title }} - Davinci {{site.DAVINCI_VERSION_SHORT}} Documentation</title>
{% if page.description %}
<meta name="description" content="{{page.description | replace: 'WH_VERSION_SHORT', site.WH_VERSION_SHORT}}">
{% endif %}
{% if page.redirect %}
<meta http-equiv="refresh" content="0; url={{page.redirect}}">
<link rel="canonical" href="{{page.redirect}}" />
{% endif %}
<!-- <link rel="stylesheet" href="css/bootstrap.min.css"> -->
<!-- <style>
body {
padding-top: 60px;
padding-bottom: 40px;
}
</style> -->
<meta name="viewport" content="width=device-width">
<!-- <link rel="stylesheet" href="css/bootstrap-responsive.min.css"> -->
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/markdown.css">
<!-- <script src="js/vendor/modernizr-2.6.1-respond-1.1.0.min.js"></script> -->
<link rel="stylesheet" href="css/pygments-default.css">
<!-- <link rel="shortcut icon" href="../../webapp/app/favicon.ico" type="image/x-icon"> -->
<!-- Google analytics script -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-32518208-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better experience this site.</p>
<![endif]-->
<!-- This code is taken from http://twitter.github.com/bootstrap/examples/hero.html -->
<div class="navbar navbar-fixed-top" id="topbar">
<div class="navbar-inner">
<div class="container">
<div class="brand" style="width:200px;"/><a href="index.html">
<img src="img/logo.svg" style="width:130px; height:48px;margin-left: 25px;"/></a>
<!-- <span class="version">{{site.DAVINCI_VERSION_SHORT}}</span> -->
</div>
<ul class="nav">
<li><a href="index.html">Overview</a></li>
<li><a href="deployment.html">Deployment</a></li>
<li><a href="quickStart.html">Quick Start</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Tutorial<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="concept.html">Concept</a></li>
<li><a href="project_org_team_user_auth_guide.html">User and Permission System</a></li>
<li><a href="source_guide.html">Source</a></li>
<li><a href="view_guide.html">View</a></li>
<li><a href="widget_guide.html">Widget</a></li>
<li><a href="dashboard_guide.html">Dashboard</a></li>
<li><a href="display_guide.html">Display</a></li>
<li><a href="schedule_guide.html">Schedule</a></li>
</ul>
</li>
<li><a href="integration_guide.html">Integration</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">More<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="blueprint.html">Blueprint</a></li>
<li><a href="more_Infomation.html">More Infomation</a></li>
<li><a href="FAQ.html">FAQ</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Davinci 0.2 用户手册<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="https://edp-davinci.gitbooks.io/davinci-user-guide-cn/content/">在线查看</a></li>
<li><a href="https://legacy.gitbook.com/download/pdf/book/edp-davinci/davinci-user-guide-cn" rel="nofollow">PDF下载</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<div class="container-wrapper">
<div class="content markdown-body" id="content">
{% if page.displayTitle %}
<h1 class="title">{{ page.displayTitle }}</h1>
{% else %}
<h1 class="title">{{ page.title }}</h1>
{% endif %}
{{ content }}
</div>
</div>
<!-- <script src="js/vendor/jquery-1.8.0.min.js"></script>
<script src="js/vendor/bootstrap.min.js"></script>
<script src="js/vendor/anchor.min.js"></script>
<script src="js/main.js"></script> -->
</body>
</html>