-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
64 lines (64 loc) · 2.94 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
layout: polymer
---
{% assign basicposts = site.categories.blogpost | where: "difficulty", "basic" %}
{% assign advancedposts = site.categories.blogpost | where: "difficulty", "advanced" %}
<div class="layout horizontal">
<div class="layout vertical center full-width">
<div class="align-center" class="column">
<div class="title"><h3>Welcome to community.nauts.io!</h3></div>
<div class="excerpt">Hi! We are <a href="http://nauts.io/">Nauts.io</a>, <a href="https://xebia.com">Xebia</a>'s data center automation experts. We believe in codified, immutable infrastructure and love sharing knowledge!
<br>Here's our take on data center automation as well as links to interesting articles written by the data center automation communities. Enjoy!</p></div>
</div>
</div>
</div>
<div class="layout horizontal center-justified wrap">
<div class="layout vertical column">
<div class="align-center"><h1 id="sharing-knowledge">Sharing knowledge</h1></div>
{% for post in basicposts %}
{% include post.html %}
{% endfor %}
</div>
<div class="layout vertical column">
<div class="align-center"><h1 id="sharing-knowledge">Sharing knowledge</h1></div>
{% for post in advancedposts %}
{% include post.html %}
{% endfor %}
</div>
<div class="layout vertical column">
<div class="align-center"><h1>Try it yourself</h1></div>
{% for post in site.categories.workshop %}
{% include post.html %}
{% endfor %}
</div>
<div class="layout vertical column">
<div class="align-center"><h1>Calendar</h1></div>
{% for post in site.categories.calendar reversed %}
{% include post.html post-type='calendar' %}
{% endfor %}
</div>
</div>
<div class="layout horizontal black-on-grey">
<div class="layout vertical full-width">
<div class="align-center"><h1>partners</h1></div>
<div class="layout horizontal wrap">
{% for post in site.partner %}
<div class="layout vertical column align-center hide-card square-header-img">
{% include post.html post-type='partner' %}
</div>
{% endfor %}
</div>
</div>
</div>
<div class="layout horizontal">
<div class="layout vertical full-width">
<div class="align-center"><h1>services</h1></div>
<div class="layout horizontal wrap">
{% for post in site.services %}
<div class="layout vertical column align-center hide-card square-header-img">
{% include post.html post-type='partner' %}
</div>
{% endfor %}
</div>
</div>
</div>