mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
55 lines
2.1 KiB
Plaintext
55 lines
2.1 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<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">
|
|
<!--
|
|
Copyright OpenJS Foundation and other contributors, https://openjsf.org/
|
|
|
|
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.
|
|
-->
|
|
<title>{{ page.title }}</title>
|
|
<link rel="icon" type="image/png" href="{{ page.favicon }}">
|
|
<link rel="mask-icon" href="{{ page.tabicon.icon }}" color="{{ page.tabicon.colour }}">
|
|
<link rel="stylesheet" href="vendor/jquery/css/base/jquery-ui.min.css?v={{ page.version }}">
|
|
<link rel="stylesheet" href="vendor/font-awesome/css/font-awesome.min.css?v={{ page.version }}">
|
|
<link rel="stylesheet" href="red/style.min.css?v={{ page.version }}">
|
|
{{#page.css}}
|
|
<link rel="stylesheet" href="{{.}}">
|
|
{{/page.css}}
|
|
{{#asset.vendorMonaco}}
|
|
<link rel="stylesheet" href="vendor/monaco/style.css?v={{ page.version }}">
|
|
{{/asset.vendorMonaco}}
|
|
</head>
|
|
<body spellcheck="false">
|
|
<div id="red-ui-editor"></div>
|
|
<script src="vendor/vendor.js?v={{ page.version }}"></script>
|
|
{{#asset.vendorMonaco}}
|
|
<script src="{{ asset.vendorMonaco }}?v={{ page.version }}"></script>
|
|
{{/asset.vendorMonaco}}
|
|
<script src="{{ asset.red }}?v={{ page.version }}"></script>
|
|
<script src="{{ asset.main }}?v={{ page.version }}"></script>
|
|
{{# page.scripts }}
|
|
<script src="{{.}}"></script>
|
|
{{/ page.scripts }}
|
|
{{#sessionMessages}}
|
|
<script>RED.sessionMessages = {{{sessionMessages}}};</script>
|
|
{{/sessionMessages}}
|
|
|
|
|
|
</body>
|
|
</html>
|