Skip to content

Commit c10d473

Browse files
author
Mark Robinson
committed
Add a WIP template for a list of workflows (for directory URLs)
1 parent 3da9fad commit c10d473

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<!DOCTYPE html>
2+
<!--
3+
~ Licensed to the Apache Software Foundation (ASF) under one
4+
~ or more contributor license agreements. See the NOTICE file
5+
~ distributed with this work for additional information
6+
~ regarding copyright ownership. The ASF licenses this file
7+
~ to you under the Apache License, Version 2.0 (the
8+
~ "License"); you may not use this file except in compliance
9+
~ with the License. You may obtain a copy of the License at
10+
~
11+
~ http://www.apache.org/licenses/LICENSE-2.0
12+
~
13+
~ Unless required by applicable law or agreed to in writing,
14+
~ software distributed under the License is distributed on an
15+
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
~ KIND, either express or implied. See the License for the
17+
~ specific language governing permissions and limitations
18+
~ under the License.
19+
-->
20+
21+
<html xmlns:th="http://www.thymeleaf.org">
22+
<head>
23+
<meta charset="UTF-8" />
24+
<meta name="viewport" content="width=device-width, initial-scale=1" />
25+
<title>Common Workflow Language Viewer</title>
26+
<link rel="stylesheet" type="text/css" th:href="@{/css/main.css}" href="../static/css/main.css" />
27+
<link rel="stylesheet" th:href="@{/bower_components/bootstrap/dist/css/bootstrap.min.css}" href="../static/bower_components/bootstrap/dist/css/bootstrap.min.css" />
28+
</head>
29+
<body>
30+
31+
<nav th:replace="fragments/header :: navbar"></nav>
32+
33+
<div class="container">
34+
<div class="row">
35+
<div class="col-md-12" role="main" id="main">
36+
<h1>Choose Workflow</h1>
37+
<div class="alert alert-info">
38+
<p>Multiple CWL files were found, please select the workflow you would like to view below</p>
39+
</div>
40+
<div class="list-group">
41+
<a href="#" class="list-group-item" th:each="workflowName : ${workflowNames}">
42+
<h4 class="list-group-item-heading" th:text="${workflowName}">ExampleWorkflow.cwl</h4>
43+
<p class="list-group-item-text">Place any details with minimal overhead here, maybe label/doc</p>
44+
</a>
45+
</div>
46+
</div>
47+
</div>
48+
</div>
49+
50+
<div th:replace="fragments/footer :: copy"></div>
51+
</body>
52+
</html>

0 commit comments

Comments
 (0)