forked from apache/incubator-kie-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (57 loc) · 2.47 KB
/
index.html
File metadata and controls
59 lines (57 loc) · 2.47 KB
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
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you 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.
-->
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title><%= KOGITO_DATA_INDEX_WEBAPP_TITLE %></title>
<link rel="stylesheet" href="styles.css" />
<link rel="shortcut icon" type="image/x-icon" href="<%= KOGITO_DATA_INDEX_WEBAPP_LOGO %>" />
</head>
<body>
<div class="maindiv">
<div class="container">
<div class="logo" style="display: flex; justify-content: center; align-items: center">
<img src="<%= KOGITO_DATA_INDEX_WEBAPP_LOGO %>" alt="KIE Logo" />
<div style="display: flex; flex-direction: column; gap: 4px">
<h1 style="margin: 0"><%= KOGITO_DATA_INDEX_WEBAPP_TITLE %></h1>
<h6 style="margin: 0; font-weight: normal" class="versionInfo"><%= KOGITO_DATA_INDEX_WEBAPP_VERSION %></h6>
</div>
</div>
<div>
<h4>Your Data Index service is up and working!</h4>
</div>
<p>
Data Index service is a dedicated supporting service that stores the data related to the workflow and process
instances and their associated jobs. This service provides a GraphQL endpoint allowing users to query and
modify that data.
</p>
<div>
<a href="<%= KOGITO_DATA_INDEX_WEBAPP_DOCLINK_HREF %>" class="btn" target="_blank"
><%= KOGITO_DATA_INDEX_WEBAPP_DOCLINK_TEXT %></a
>
<a href="<%= KOGITO_DATA_INDEX_WEBAPP_GRAPHQLUI_HREF %>" class="btn" target="_blank"
><%= KOGITO_DATA_INDEX_WEBAPP_GRAPHQLUI_LINK_TEXT %></a
>
</div>
</div>
</div>
</body>
</html>