forked from exoplatform/developer.exoplatform.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (26 loc) · 839 Bytes
/
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
---
layout: page
title: Home
group: navigation
---
{% include JB/setup %}
<div class="row">
<div class="span6 offset1">
<div class="hero-unit">
<h1>Welcome</h1>
<p>Soon, you'll find here a set of documentations dedicated for eXo developers and contributors.</p>
</div>
</div>
<div class="span4 offset1">
<div class="well">
<h2>Last posts</h2>
<ul>
{% for post in site.posts %}
<li><span>{{ post.date | date: "%B %e, %Y" }}</span> » <a href="{{ BASE_PATH }}{{ post.url }}">{{post.title }}</a><br/>
{% for tag in post.tags %} <span class="label label-{{ tag }}">{{ tag }}</span>{% endfor %}
</li>
{% endfor %}
</ul>
</div>
</div>
</div>