forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (26 loc) · 1.15 KB
/
index.html
File metadata and controls
33 lines (26 loc) · 1.15 KB
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
---
layout: blog
title: Thoughts About Various Backend Development Topics.
permalink: /
---
<div class="container mtb">
<div class="row">
<! -- BLOG POSTS LIST -->
<div class="col-lg-8">
{% for post in site.posts %}
<! -- Blog Post -->
<a href="{{ post.url | prepend: site.baseurl }}"><h3 class="ctitle">{{ post.title }}</h3></a>
<p><csmall>{{ post.date | date: "%b %-d, %Y" }}.</csmall></p>
<p class="share">
<a href="http://www.facebook.com/sharer.php?u={{ post.url | prepend: site.url }}"><i class="fa fa-facebook"></i></a>
<a href="http://twitter.com/home/?status= {{post.title}} {{ post.url | prepend: site.url }} via @IvanKorhner" _target="blank"><i class="fa fa-twitter"></i></a>
</p>
{{ post.excerpt }}
<p><a href="{{ post.url | prepend: site.baseurl }}">[Read More]</a></p>
<div class="hline"></div>
<div class="spacing"></div>
{% endfor %}
</div><! --/col-lg-8 -->
{% include sidebar.html %}
</div><! --/row -->
</div><! --/container -->