-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
69 lines (57 loc) · 2.36 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{{ define "main" }}
<section class="section container-fluid mt-n3 pb-3">
<div class="row justify-content-center">
<div class="col-lg-12 text-center">
<h1>{{ .Title }}</h1>
</div>
<div class="col-lg-9 col-xl-8 text-center">
<p class="lead">{{ .Params.lead | safeHTML }}</p>
<a class="btn btn-primary btn-cta rounded-pill btn-lg my-3" href="/guides/getting_started/" role="button">Get Started!</a>
{{ .Content }}
</div>
</div>
</section>
{{ end }}
{{ define "sidebar-prefooter" }}
{{ if site.Params.doks.backgroundDots -}}
<div class="d-flex justify-content-start">
<div class="bg-dots"></div>
</div>
{{ end -}}
<section class="section section-md section-features">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-lg-5">
<h2 class="h4">Security</h2>
<p>HPC jobs run in the context of a POSIX filesystem. Cloud APIs depend on access tokens that are limited in both scope and time. OpenCHAMI ships everything you need to bridge the two worlds.</p>
</div>
<div class="col-lg-5">
<h2 class="h4">Simplicity</h2>
<p>OpenCHAMI can support the largest HPC systems with the most complex requirements, but the default install is useful within five minutes. Complexity is always "opt-in". </p>
</div>
<div class="col-lg-5">
<h2 class="h4">Modularity</h2>
<p>Each of the components that comprise the OpenCHAMI system is designed to work in a standalone mode and can be fully replaced.</p>
</div>
</div>
</div>
</section>
{{ end }}
{{ define "sidebar-footer" }}
<section class="section section-md container-fluid bg-light">
<div class="row justify-content-center text-center">
<div class="col-lg-7">
<h2 class="mt-2">Learn more about using OpenCHAMI</h2>
<a class="btn btn-primary rounded-pill px-4 my-2" href="/docs/introduction-to-openchami/" role="button">Learn More</a>
</div>
</div>
</section>
<section class="section section-md container-fluid ">
<div class="row justify-content-center text-center">
<div class="col-lg-7">
<h2 class="mt-2">Still want more?</h2>
<div class="ml-embedded" data-form="7uAs65"></div>
</div>
</div>
</section>
{{ end }}