-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (22 loc) · 842 Bytes
/
index.html
File metadata and controls
26 lines (22 loc) · 842 Bytes
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
---
layout: default
---
<p class="sub-head">Welcome to the engineering blog of Wanelo, featuring technical tales of triumph, daring and woe. Sometimes cats. We are definitely hiring. Please email play AT wanelo.com if you're curious!</p>
<ul id="post-listing">
{% for post in site.posts %}
<li>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<span class="date">First posted on {{post.date | date: "%A, %d %b %Y" }}
{% if post.author %}
by <a href="http://wanelo.com/{{post.author_username}}">{{post.author}}</a>
{% endif %}
</span>
<br /><br />
<blockquote class="excerpt">
{{ post.excerpt }}
<a class="read-more" href="{{ post.url }}"> ⟶ Full Post </a>
</blockquote>
<br />
</li>
{% endfor %}
</ul>