-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
65 lines (61 loc) · 2.63 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
{{ 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-10"> <!-- Widened from col-lg-9 col-xl-8 -->
<p class="lead text-center">{{ .Params.lead | safeHTML }}</p>
<div class="text-center">
<a class="btn btn-primary btn-cta rounded-pill btn-lg my-3" href="/guides/getting_started/" role="button">Get Started!</a>
</div>
<div class="content-area"> <!-- New class for controlled width and alignment -->
{{ .Content }}
</div>
</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">
<div class="col-lg-4">
<h2 class="h4 text-center">Security</h2>
<p class="text-left">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-4">
<h2 class="h4 text-center">Simplicity</h2>
<p class="text-left">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-4">
<h2 class="h4 text-center">Modularity</h2>
<p class="text-left">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-8"> <!-- Widened for better readability -->
<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-8">
<h2 class="mt-2">Still want more?</h2>
<div class="ml-embedded" data-form="7uAs65"></div>
</div>
</div>
</section>
{{ end }}