-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathtutorials.html
85 lines (79 loc) · 2.38 KB
/
tutorials.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
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
---
layout: default
body_class: tutorials
page_title: Tutorials | Vowpal Wabbit
page_description: Explore Vowpal Wabbit and learn with easy-to-access tutorials and documentation.
---
<div class="content tutorials_container">
<div class="hero">
<div class="container">
<div class="row">
<div class="col-lg-6">
<h1>
Tutorials
</h1>
<p>
Learn, explore, and experiment using our tutorials below.
</p>
</div>
</div>
</div>
</div>
{% assign tutorials = site.tutorials | sort: 'order' %}
{% assign communities = site.communities | sort: 'order' %}
<div class="tutorials_list">
<div class="container">
<div class="row">
{% for tutorial in tutorials %}
<div class="col-12 col-md-6 col-lg-4">
<div class="tutorial_card">
<h4>
{{tutorial.title}}
</h4>
<div class="tags">
<span class="tag">
{{tutorial.level}}
</span>
{% for tag in tutorial.tags %}
<span class="tag">
{{tag}}
</span>
{% endfor %}
</div>
<div class="description">
{{tutorial.description}}
</div>
<div class="footer">
<a href="{{ tutorial.url | relative_url }}">
Start
</a>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
<div class="col-12 content help_section_container text-center">
<div class="container">
<h2>
Need help?
</h2>
<div class="row justify-content-center">
<p class="col-12 col-md-8 col-lg-6 description">
See the latest code, ask QA, or chat with a team of experts and community to get answers to your questions.
</p>
</div>
<div class="row justify-content-center align-items-center">
<div class="col-12 col-md-6 col-lg-5 links">
{% for community in communities %}
<a href="{{community.link}}" target="_blank">
{% include {{community.logo}} %}
{{ community.title }}
</a>
{% endfor %}
</div>
</div>
</div>
</div>