This repository was archived by the owner on Jun 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (64 loc) · 1.58 KB
/
index.html
File metadata and controls
73 lines (64 loc) · 1.58 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
---
layout: base
---
<div class="jumbotron landing-page-jumbotron text-center">
<img src="/assets/img/logo-big.png">
<p>
</p>
<div class="container text-left">
<div class="row">
<div class="col-sm-12 col-md-offset-1 col-md-10 col-lg-offset-2 col-lg-8">
<p class="lead">
Warehaus is a collaboration tool for data-centers allowing everyone to share
resources and configuration, whether you're a human, bot, in the cloud or
on-premise.
</p>
</div>
</div>
</div>
<p>
</p>
<div class="container">
<div class="row">
<a class="btn btn-lg btn-primary" href="{{ site.baseurl }}/docs/quick-start.html">
Quick Start Guide
</a>
<a class="btn btn-lg btn-primary" href="{{ site.baseurl }}/docs/">
Documentation
</a>
</div>
</div>
<p>
</p>
<div class="container">
<div class="row">
<div class="col-sm-12">
<p style="font-size: 1.2rem;">
Latest release: 0.1.4
</p>
</div>
</div>
</div>
</div>
{% for post in site.posts %}
<a href="{{ post.url }}">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h3>
{{ post.title }}
<small>
{% for category in post.categories %}
<span class="label label-success">{{ category }}</span>
{% endfor %}
</small>
</h3>
<div class="post-subtitle">
{{ post.date | date: '%B %d, %Y'}}
</div>
<p>{{ post.excerpt }}</p>
</div>
</div>
</div>
</a>
{% endfor %}