-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.tpl
58 lines (52 loc) · 1.67 KB
/
index.tpl
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
<!DOCTYPE html>
<html>
<head>
<title>Helm Charts</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/2.10.0/github-markdown.min.css" />
<style>
.markdown-body {
box-sizing: border-box;
min-width: 200px;
max-width: 980px;
margin: 0 auto;
padding: 45px;
}
@media (max-width: 767px) {
.markdown-body {
padding: 15px;
}
}
</style>
</head>
<body>
<section class="markdown-body">
<h1>Helm Charts</h1>
<h2>Usage</h2>
<pre lang="no-highlight"><code>
helm repo add highcanfly https://helm-repo.highcanfly.club
</code></pre>
<p>These are presented as is. Anyone is free to use them, and make suggestions, but they were created for our own use. At some point we want to submit them to the actual helm charts repo.</p>
<h2>Charts</h2>
<ul>
{{range $key, $chartEntry := .Entries }}
<li>
<p>
{{ (index $chartEntry 0).Name }}
(<a href="{{ (index (index $chartEntry 0).Urls 0) }}" title="{{ (index (index $chartEntry 0).Urls 0) }}">
{{ (index $chartEntry 0).Version }}
@
{{ (index $chartEntry 0).AppVersion }}
</a>)
</p>
<p>
{{ (index $chartEntry 0).Description }}
</p>
</li>
{{end}}
</ul>
</section>
<time datetime="{{ .Generated.Format "2006-01-02T15:04:05" }}" pubdate id="generated">{{ .Generated.Format "Mon Jan 2 2006 03:04:05PM MST-07:00" }}</time>
</body>
</html>