forked from jacobtomlinson/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (40 loc) · 2.11 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
layout: default
---
<div class="container-fluid index">
<div class="row">
<div class="col-md-12 main content-panel">
<div class="gravatar">
<img src="{{ site.title_image }}" class="img-circle about-image" height="150" width="150" alt="{{ site.title }}" />
</div>
<h1 class="header author-header" itemprop="headline">{{ site.title }}</h1>
<div class="author-text">
{{ site.title_description }}
</div>
<div class="links">
{% if site.twitter_username %}<a href="http://www.twitter.com/{{ site.twitter_username }}" target="_new"><i class="fa fa-twitter fa-2x"></i></a>{% endif %}
{% if site.linkedin_link %}<a href="{{ site.linkedin_link }}" target="_new"><i class="fa fa-linkedin fa-2x"></i></a>{% endif %}
{% if site.google_plus_link %}<a href="{{ site.google_plus_link }}" target="_new"><i class="fa fa-google-plus fa-2x"></i></a>{% endif %}
{% if site.github_username %}<a href="https://github.com/{{ site.github_username }}" target="_new"><i class="fa fa-github-alt fa-2x"></i></a>{% endif %}
{% if site.stackoverflow_link %}<a href="{{ site.stackoverflow_link }}" target="_new"><i class="fa fa-stack-overflow fa-2x"></i></a>{% endif %}
<a href="feed.xml" target="_new"><i class="fa fa-rss fa-2x"></i></a>
</div>
</div>
<div class="col-md-12 main content-panel">
<div class="articles">
<h2>Latest Articles</h2>
<ul>
{% for post in site.posts | limit: site.post_limit %}
<li>
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
<small class="hidden-xs">{{ post.date | date: "%B %-d, %Y" }}</small>
</li>
{% endfor %}
<li>
<small><i><a href="/posts/">more...</a></i></small>
</li>
</ul>
</div>
</div>
</div>
</div>