-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathc1_tab.html
More file actions
89 lines (81 loc) · 2.36 KB
/
c1_tab.html
File metadata and controls
89 lines (81 loc) · 2.36 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{{ define "header-bottom" }}
<section></section>
{{ end }}
{{ define "main" }}
<!-- about breadcrumb area start -->
<section class="hero-area-2 bg-color-available">
<div class="container">
<div class="flex justify-center">
<div class="w-full md:w-1/2 d-table">
<div class="hero-area-inner-2 text-center d-table-cell">
<h1>{{ .Title }}</h1>
</div>
</div>
</div>
</div>
</section>
<!-- about breadcrumb area end -->
<!-- terms of service-area start -->
<section class="section-padding">
<div class="container">
<div class="flex flex-col md:flex-row gap-8">
<div class="w-full md:w-1/4">
<div class="kd-left-sidebar appscode-style">
<div class="kd-sidebar-menu">
{{ $currentPage := . }}
{{ $menu := .Params.left_menu }}
{{ range (index .Site.Menus $menu ) }}
<div class="item">
<input type="checkbox" id="1-1" {{ if $currentPage.IsMenuCurrent $menu . }}checked=""{{ end }} />
<label for="1-1"><a href="{{ .URL }}">{{ .Name }}</a></label>
</div>
{{ end }}
</div>
</div>
</div>
<div class="w-full md:w-3/4">
<div class="full-info appscode-style">
{{ .Content }}
</div>
</div>
</div>
</div>
</section>
<!-- terms of service-area end -->
<!-- call to action start -->
<!-- <section class="ac-cta-area section-padding pt-0">
<div class="container">
<div class="cta-padding">
<div class="columns">
<div class="column is-6">
<div class="cta-text">
<h2>Ready to Get Started?</h2>
<p>Create a Free Account and refer your friend</p>
</div>
</div>
<div class="column is-6 text-right is-mobile">
<div class="cta-button d-table">
<div class="cta-button-inner d-table-cell">
<a
href="/products/voyager/10.0.0/setup/"
class="button ac-button ac-primary"
>Try Now for FREE</a
>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- call to action end -->
{{ end }}
{{ define "testimonial" }}
<section></section>
{{ end }}
{{ define "customer-logos" }}
<section></section>
{{ end }}
{{ define "cta-install" }}
<section></section>
{{ end }}