-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (39 loc) · 2.1 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
---
title: Portfolio
layout: default
---
{% for post in site.posts %}
<div class="post">
{{ post.content }}
<div class="well well-sm">
<a href="{{ post.url }}">Permalink</a>
<div class="btn-group sharing-icons">
<button class="btn btn-default btn-xs disabled">Share:</button>
<a class="btn btn-default btn-xs" target="_blank" title="Like On Facebook" href="http://www.facebook.com/plugins/like.php?href={{ site.url }}{{ post.url }}">
<i class="fa fa-thumbs-o-up fa-lg fb"></i>
</a>
<a class="btn btn-default btn-xs google-plus-one" target="_blank" title="+1 On Google" href="https://apis.google.com/_/+1/fastbutton?usegapi=1&size=large&hl=en&url={{ site.url }}{{ post.url }}">
<i class="fa fa-google-plus fa-2x google"></i>
<span class="google">1</span>
</a>
<a class="btn btn-default btn-xs" target="_blank" title="On Facebook" href="http://www.facebook.com/sharer.php?u={{ site.url }}{{ post.url }}">
<i class="fa fa-facebook fa-lg fb"></i>
</a>
<a class="btn btn-default btn-xs" target="_blank" title="On Twitter" href="http://twitter.com/share?url={{ site.url }}{{ post.url }}">
<i class="fa fa-twitter fa-lg tw"></i>
</a>
<a class="btn btn-default btn-xs" target="_blank" title="On Google Plus" href="https://plusone.google.com/_/+1/confirm?hl=en&url={{ site.url }}{{ post.url }}">
<i class="fa fa-google-plus fa-lg google"></i>
</a>
<a class="btn btn-default btn-xs" target="_blank" title="On LinkedIn" href="http://www.linkedin.com/shareArticle?mini=true&url={{ site.url }}{{ post.url }}">
<i class="fa fa-linkedin fa-lg linkin"></i>
</a>
</div>
<span class="post-category-list">[{% for category in post.categories %}
<a href="/categories/{{ category }}/">{{ category }}</a>
{% unless forloop.last %},{% endunless %}
{% endfor %}]
</span>
</div>
</div>
{% endfor %}