-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
51 lines (47 loc) · 2.15 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
---
layout: default
---
<section class="meta col-lg-3 col-lg-push-9" itemprop="author" itemscope itemtype="http://schema.org/Person">
<!-- a class="book-promotion" href="http://bit.ly/1QKppHM" title="Testing with F# - PACKT Publishing">50% OFF on eBook, Testing with F#, valid until, 06th of March</a -->
<img class="profile-image" src="//www.gravatar.com/avatar/f46a41ae19f35713a65841f144491a72?s=100" alt="Mikael Lundin" itemprop="image" />
<div class="author-info">
<a class="author-name" href="http://mikaellundin.name" itemprop="url">
<span itemprop="name">Mikael Lundin</span>
</a>
<div class="social-media-icons">
<a href="//twitter.com/mikaellundin" title="Mikael Lundin on Twitter"><i class="fa fa-twitter"></i></a>
<a href="//github.com/miklund" title="Mikael Lundin on GitHub"><i class="fa fa-github"></i></a>
<a href="//linkedin.com/in/miklund" title="Mikael Lundin on LinkedIn"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="content">
<h1>Welcome</h1>
<p>
This is my blog where I talk about anything I find interesting and more than often code. If you want to know more about me, check my <a href="http://mikaellundin.name">about.me page</a>, or go to my <a href="/contact">contact page</a>.
</p>
<p>
Enjoy!
</p>
</div>
</section>
<section class="posts col-lg-9 col-lg-pull-3">
{% for post in site.posts limit:10 %}
<a href="{{ post.url }}" class="post-excerpt">
<info class="post-published" datetime="{{ page.date | date: "%Y-%m-%d" }}">
{{ post.date | date: "%b %Y" }}
</info>
{% if post.image %}
<img class="post-image" src="{{ post.image }}"/>
{% endif %}
<h2 class="post-title">{{ post.title }}</h2>
{% if post.description %}
<p class="post-description">{{ post.description | strip_html }}</p>
{% else %}
<p class="post-description">{{ post.excerpt | strip_html }}</p>
{% endif %}
</a>
{% endfor %}
<p>
<a href="/archive/">For more, go to the archive</a>
</p>
</section>