-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtutorials-videos.html
40 lines (38 loc) · 1.42 KB
/
tutorials-videos.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
<div class="row">
<div class="col-md-12 mb-3">
<div class="card mb-3">
<div class="card-body p-3">
<h4 class="pb-2" style="border-bottom:1px solid #d9d9d9">Get Started</h4>
{% for item in site.guide %}
{% if item.path contains 'get-started' %}
<div class="mb-3">
<a href="/docs/{{ item.slug }}" class="doc-list">
<h6 class=" mt-3">{{ item.title }}</h6>
<p style="color: #343434" class="mb-0">{{item.description}}</p>
</a>
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 mb-3">
<div class="card mb-3">
<div class="card-body p-3">
<h4 class="pb-2" style="border-bottom:1px solid #d9d9d9">Tutorials</h4>
{% for item in site.guide %}
{% if item.path contains 'tutorial' %}
<div class="mb-3">
<a href="/docs/{{ item.slug }}" class="doc-list">
<h6 class=" mt-3">{{ item.title }}</h6>
<p style="color: #343434" class="mb-0">{{item.description}}</p>
</a>
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>
</div>