forked from edrex/static-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (28 loc) · 898 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
29
---
layout: default
title: Activate Hub
description: copy the description from _config.yml here
---
<div id="home" class="row">
<div class="col-sm-9">
<div class="list-group posts">
{% for post in site.posts %}
<a href="{{ post.url }}" class="list-group-item">
<h4 class="list-group-item-heading">{{ post.title }}<small class="pull-right">{{ post.date | date_to_string }}</small></h4>
{% if post.description %}
<p class="list-group-item-text">{{ post.description }}</p>
{% endif %}
</a>
{% endfor %}
</div>
</div>
<div class="col-sm-3">
<div class="list-group posts">
{% for post in site.pages %}{% if post.url != page.url and post.title != null %}
<a href="{{ post.url }}" title="{{ post.description }}" class="list-group-item">
{{ post.title }}
</a>
{% endif %}{% endfor %}
</div>
</div>
</div>