Add Helm documentation (#517)
* Add required blocks to Helm templates Signed-off-by: lucperkins <lucperkins@gmail.com> * Make CLI table border lighter Signed-off-by: lucperkins <lucperkins@gmail.com> * Change aesthetic of CLI table Signed-off-by: lucperkins <lucperkins@gmail.com> * Add admonition blocks Signed-off-by: lucperkins <lucperkins@gmail.com> * Fix wording Signed-off-by: lucperkins <lucperkins@gmail.com>
This commit is contained in:
12
website/layouts/partials/admonition.html
Normal file
12
website/layouts/partials/admonition.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<div class="notification is-{{ .type }}">
|
||||
<article class="media">
|
||||
<div class="media-left">
|
||||
<span class="icon">
|
||||
<i class="fas fa-lg fa-{{ .icon }}"></i>
|
||||
</span>
|
||||
</div>
|
||||
<div class="media-content">
|
||||
{{ .content | markdownify }}
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
1
website/layouts/shortcodes/danger.html
Normal file
1
website/layouts/shortcodes/danger.html
Normal file
@@ -0,0 +1 @@
|
||||
{{ partial "admonition.html" (dict "type" "danger" "icon" "ban" "content" .Inner) }}
|
||||
1
website/layouts/shortcodes/info.html
Normal file
1
website/layouts/shortcodes/info.html
Normal file
@@ -0,0 +1 @@
|
||||
{{ partial "admonition.html" (dict "type" "info" "icon" "info-circle" "content" .Inner) }}
|
||||
1
website/layouts/shortcodes/requirement.html
Normal file
1
website/layouts/shortcodes/requirement.html
Normal file
@@ -0,0 +1 @@
|
||||
{{ partial "admonition.html" (dict "type" "requirement" "icon" "wrench" "content" .Inner) }}
|
||||
1
website/layouts/shortcodes/success.html
Normal file
1
website/layouts/shortcodes/success.html
Normal file
@@ -0,0 +1 @@
|
||||
{{ partial "admonition.html" (dict "type" "success" "icon" "check-circle" "content" .Inner) }}
|
||||
1
website/layouts/shortcodes/warning.html
Normal file
1
website/layouts/shortcodes/warning.html
Normal file
@@ -0,0 +1 @@
|
||||
{{ partial "admonition.html" (dict "type" "warning" "icon" "exclamation" "content" .Inner) }}
|
||||
Reference in New Issue
Block a user