-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (36 loc) · 1.13 KB
/
index.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
---
layout: default
---
<div class="jumbotron">
<div class="container">
<h1>{{ site.title }}</h1>
<p>{{ site.description }}</p>
<p class="text-center">
<a class="btn btn-primary btn-lg" href="{{ "/quick-start/" | prepend: site.baseurl }}" role="button">
<span class="glyphicon glyphicon-flash"></span>
Quick start guide
</a>
<a class="btn btn-primary btn-lg" href="{{ "/documentation/" | prepend: site.baseurl }}" role="button">
<span class="glyphicon glyphicon-book"></span>
Read the documentation
</a>
</p>
</div>
</div>
<div class="container">
<h2>News and Blog</h2>
<p>
Subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a> or bookmark this page
to keep up to date with our latest news updates.
</p>
<ul class="list-group">
{% for post in site.posts %}
<li class="list-group-item">
<span class="label label-info pull-right">{{ post.date | date: "%b %-d, %Y" }}</span>
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</div>