2015-04-13 01:11:11 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<meta charset="utf-8">
|
2015-04-28 15:25:41 +02:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
2015-04-13 01:11:11 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
|
|
<!--
|
2017-01-11 16:24:33 +01:00
|
|
|
Copyright JS Foundation and other contributors, http://js.foundation
|
2015-04-13 01:11:11 +02:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
<head>
|
|
|
|
<title>{{ page.title }}</title>
|
|
|
|
<link rel="icon" type="image/png" href="{{ page.favicon }}">
|
2016-02-08 15:20:43 +01:00
|
|
|
<link rel="mask-icon" href="{{ page.tabicon }}" color="#8f0000">
|
2015-04-13 01:11:11 +02:00
|
|
|
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
|
|
|
|
<link href="vendor/jquery/css/smoothness/jquery-ui-1.10.3.custom.min.css" rel="stylesheet" media="screen">
|
|
|
|
<link rel="stylesheet" href="vendor/font-awesome/css/font-awesome.min.css">
|
|
|
|
<link rel="stylesheet" href="vendor/vendor.css">
|
|
|
|
<link rel="stylesheet" href="red/style.min.css">
|
|
|
|
{{#page.css}}
|
|
|
|
<link rel="stylesheet" href="{{.}}">
|
|
|
|
{{/page.css}}
|
|
|
|
|
|
|
|
</head>
|
|
|
|
<body spellcheck="false">
|
|
|
|
<div id="header">
|
2018-04-20 21:50:20 +02:00
|
|
|
<span class="logo">{{#header.url}}<a href="{{.}}">{{/header.url}}{{#header.image}}<img src="{{.}}">{{/header.image}} <span>{{ header.title }}</span>{{#header.url}}</a>{{/header.url}}</span>
|
2015-04-13 01:11:11 +02:00
|
|
|
<ul class="header-toolbar hide">
|
|
|
|
<li><a id="btn-sidemenu" class="button" data-toggle="dropdown" href="#"><i class="fa fa-bars"></i></a></li>
|
2016-03-30 09:59:36 +02:00
|
|
|
</ul>
|
2016-03-21 23:51:48 +01:00
|
|
|
<div id="header-shade" class="hide"></div>
|
2015-04-13 01:11:11 +02:00
|
|
|
</div>
|
|
|
|
<div id="main-container" class="sidebar-closed hide">
|
|
|
|
<div id="workspace">
|
|
|
|
<ul id="workspace-tabs"></ul>
|
2016-05-22 22:23:30 +02:00
|
|
|
<div id="chart" tabindex="1"></div>
|
2015-07-30 12:03:37 +02:00
|
|
|
<div id="workspace-toolbar"></div>
|
2015-07-14 16:59:56 +02:00
|
|
|
<div id="workspace-footer">
|
|
|
|
<a class="workspace-footer-button" id="btn-zoom-out" href="#"><i class="fa fa-minus"></i></a>
|
|
|
|
<a class="workspace-footer-button" id="btn-zoom-zero" href="#"><i class="fa fa-circle-o"></i></a>
|
|
|
|
<a class="workspace-footer-button" id="btn-zoom-in" href="#"><i class="fa fa-plus"></i></a>
|
2018-06-15 14:24:52 +02:00
|
|
|
<a class="workspace-footer-button-toggle single" id="btn-navigate" href="#"><i class="fa fa-map-o"></i></a>
|
2015-07-14 16:59:56 +02:00
|
|
|
</div>
|
2016-08-04 17:49:36 +02:00
|
|
|
<div id="editor-shade" class="hide"></div>
|
2015-04-13 01:11:11 +02:00
|
|
|
</div>
|
2016-03-24 00:22:36 +01:00
|
|
|
<div id="editor-stack"></div>
|
2016-08-04 17:49:36 +02:00
|
|
|
<div id="palette">
|
|
|
|
<img src="red/images/spin.svg" class="palette-spinner hide"/>
|
2016-08-05 17:39:41 +02:00
|
|
|
<div id="palette-search" class="palette-search hide">
|
2016-08-09 11:43:03 +02:00
|
|
|
<input type="text" data-i18n="[placeholder]palette.filter"></input>
|
2016-08-04 17:49:36 +02:00
|
|
|
</div>
|
|
|
|
<div id="palette-container" class="palette-scroll hide"></div>
|
|
|
|
<div id="palette-footer">
|
|
|
|
<a class="palette-button" id="palette-collapse-all" href="#"><i class="fa fa-angle-double-up"></i></a>
|
|
|
|
<a class="palette-button" id="palette-expand-all" href="#"><i class="fa fa-angle-double-down"></i></a>
|
|
|
|
</div>
|
|
|
|
<div id="palette-shade" class="hide"></div>
|
|
|
|
</div><!-- /palette -->
|
2015-04-13 01:11:11 +02:00
|
|
|
<div id="sidebar">
|
|
|
|
<ul id="sidebar-tabs"></ul>
|
|
|
|
<div id="sidebar-content"></div>
|
2016-01-08 14:36:49 +01:00
|
|
|
<div id="sidebar-footer"></div>
|
2016-08-04 17:49:36 +02:00
|
|
|
<div id="sidebar-shade" class="hide"></div>
|
2015-04-13 01:11:11 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="sidebar-separator"></div>
|
|
|
|
|
|
|
|
</div>
|
2017-12-10 23:35:57 +01:00
|
|
|
<div id="full-shade" class="hide"></div>
|
2015-04-13 01:11:11 +02:00
|
|
|
|
|
|
|
<div id="notifications"></div>
|
2015-07-01 00:42:03 +02:00
|
|
|
<div id="dropTarget"><div data-i18n="[append]workspace.dropFlowHere"><br/><i class="fa fa-download"></i></div></div>
|
2015-04-13 01:11:11 +02:00
|
|
|
|
|
|
|
<script src="vendor/vendor.js"></script>
|
2016-11-11 00:58:34 +01:00
|
|
|
<script src="vendor/jsonata/jsonata.min.js"></script>
|
2015-04-13 01:11:11 +02:00
|
|
|
<script src="vendor/ace/ace.js"></script>
|
|
|
|
<script src="vendor/ace/ext-language_tools.js"></script>
|
2015-05-11 21:24:15 +02:00
|
|
|
<script src="{{ asset.red }}"></script>
|
2016-11-02 23:53:18 +01:00
|
|
|
<script src="{{ asset.main }}"></script>
|
2017-04-10 16:46:44 +02:00
|
|
|
{{# page.scripts }}
|
|
|
|
<script src="{{.}}"></script>
|
|
|
|
{{/ page.scripts }}
|
2015-04-13 01:11:11 +02:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|