123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <!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>
|