-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (33 loc) · 1.05 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
---
layout: default
---
<div class="container p-b-lg">
{% for post in site.posts reversed %}
<article class="card m-b">
<div class="card-block">
<h1>{{post.name}}</h1>
<h2><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h2>
<ul class="s-list-links">
{% if post.twitter != nil %}
<li>
<i class="fa fa-twitter"></i>
<a href="http://www.twitter.com/{{ post.twitter }}" target="_blank">{{post.twitter}}</a>
</li>
{% endif %}
{% if post.github != nil %}
<li>
<i class="fa fa-github"></i>
<a href="http://www.github.com/{{ post.github }}" target="_blank">{{post.github}}</a>
</li>
{% endif %}
{% if post.slides != nil %}
<li>
<i class="fa fa-pencil"></i>
<a href="{{ post.slides }}" target="_blank">{{ post.slides }}</a>
</li>
{% endif %}
</ul>
</div>
</article>
{% endfor %}
</div>