-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (53 loc) · 971 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
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
---
layout: center
title: Home
tags:
- climbing
---
<style>
.feature-item{
padding:10px;
margin:auto;
}
.feature-box{
color:white;
margin:auto;
height:200px;
border-radius:5px;
opacity:.95;
}
.feature-box:hover{
opacity:1;
}
.feature-box h2 {
padding: 20px 0px 10px;
}
.feature-box p {
padding: 0px 5px;
}
.feature-box span {
vertical-align:middle;
display: inline-block;
}
.row {
margin-right: 0px;
margin-left: 0px;
}
</style>
<div class="row">
{% for entry in site.collections %}
<div class="feature-item col-sm-6 col-md-4">
<a href="{{ entry[1].url }}">
<div class="feature-box {{ entry[1].label }}">
<span>
<h2>
<i class="fa {{ entry[1].icon }}"></i>
{{ entry[0] }}
</h2>
<p>{{ entry[1].description }}</p>
</span>
</div>
</a>
</div>
{% endfor %}
</div>