This repository has been archived by the owner on Apr 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
52 lines (47 loc) · 1.75 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Walkthroughs (aka Solution Patterns)</title>
<link rel="stylesheet" href="etc/awsm.css">
<script src="etc/asciidoctor.js"></script>
</head>
<body>
<header>
<h1>Integreatly Solution Patterns</h1>
<nav>
<ul>
<li><a href="https://integr8ly.github.io/tutorial-web-app-walkthroughs">Walkthroughs</a></li>
<li><a href="https://integr8ly.github.io/user-documentation/">User Documentation</a></li>
<li><a href="https://github.com/integr8ly">GitHub Org</a></li>
</ul>
</nav>
</header>
<aside>
In a cluster, Resources appear here.
</aside>
<main>
<article>
<section>
<div id="target" class="col-md-12">
<script>
var asciidoctor = Asciidoctor();
var content = "include::etc/index.adoc[leveloffset=+1]";
const html0 = asciidoctor.convert(content,{safe: 'server', attributes: {PRODUCT: 'BMX'}});
document.getElementById('target').innerHTML = html0;
var fname = (location.search.match(/e=(.*)/)[1]);
var content = "include::"+ fname + "[leveloffset=+1]";
const html = asciidoctor.convert(content,{safe: 'server', attributes: {PRODUCT: 'BMX'}});
document.getElementById('target').innerHTML = html;
</script>
</div>
</section>
</article>
</main>
<footer>
<p>Tutorials that run in your <abbr title="An OpenShift cluster running AMQ Online, Fuse Online and 3Scale.">Cluster</abbr>.
</p>
</footer>
</body>
</html>