-
Notifications
You must be signed in to change notification settings - Fork 73
/
quickstarts-tabs.html
32 lines (29 loc) · 1.43 KB
/
quickstarts-tabs.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
<div class="tabs post">
<!------------------- MINIKUBE TAB ------------------->
<input type="radio" name="quickstarts-tab" id="quickstartsTab1" checked="checked">
<label for="quickstartsTab1">Minikube</label>
<div class="tab">
{% capture tab_one %}{% include_relative minikube.md %}{% endcapture %} {{ tab_one | markdownify }}
</div>
<!-- OKD has been removed because we do not support 3.11 anymore. We should try to replace it with something else! -->
{% comment %}
<!------------------- OKD TAB ------------------->
<!--<input type="radio" name="quickstarts-tab" id="quickstartsTab2">
<label for="quickstartsTab2">OKD</label>
<div class="tab">
{% capture tab_two %}{% include_relative okd.md %}{% endcapture %} {{ tab_two | markdownify }}
</div>-->
{% endcomment %}
<!------------------- KUBERNETES KIND TAB ------------------->
<input type="radio" name="quickstarts-tab" id="quickstartsTab3">
<label for="quickstartsTab3">Kubernetes Kind</label>
<div class="tab">
{% capture tab_three %}{% include_relative kind.md %}{% endcapture %} {{ tab_three | markdownify }}
</div>
<!------------------- DOCKER DESKTOP TAB ------------------->
<input type="radio" name="quickstarts-tab" id="quickstartsTab4">
<label for="quickstartsTab4">Docker Desktop</label>
<div class="tab">
{% capture tab_four %}{% include_relative dockerdesktop.md %}{% endcapture %} {{ tab_four | markdownify }}
</div>
</div>