-
Notifications
You must be signed in to change notification settings - Fork 17
/
blog.html
82 lines (76 loc) · 2.17 KB
/
blog.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
---
layout: default
body_class: blogs
page_title: Blog | Vowpal Wabbit
page_description: Vowpal Wabbit announcements and blog.
---
<div class="content blogs_container">
<div class="hero">
<div class="container">
<div class="row">
<div class="col-lg-6">
<h1>
Blog
</h1>
<p>
Get the latest news and announcements for Vowpal Wabbit.
</p>
</div>
</div>
</div>
</div>
{% assign posts = site.posts %}
<div class="blogs_list">
<div class="container">
<div class="row">
{% for post in posts %}
<div class="col-12 col-md-6 col-lg-4">
<div class="blog_card">
<h4>
{{post.title}}
</h4>
<div class="tags">
{% for tag in post.tags %}
<span class="tag">
{{tag}}
</span>
{% endfor %}
</div>
<div class="description">
{{post.description}}
</div>
<div class="footer">
<a href="{{ post.url | relative_url }}">
Start
</a>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
{% assign communities = site.communities | sort: 'order' %}
<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>