-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (32 loc) · 804 Bytes
/
index.html
File metadata and controls
34 lines (32 loc) · 804 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
26
27
28
29
30
31
32
33
34
---
layout: default
title: Faulhorn Labs blog
---
<div id='blog' class='wrap'>
<!--
<div id='intro'>
<div class='quote'>
<p>I learned very early the difference between knowing the name of something and knowing something.</p>
<a href='https://en.wikiquote.org/wiki/Richard_Feynman' target='_blank'>Richard Feynman</a>
</div>
</div>
-->
<div id='posts' class='section'>
{% for post in site.posts %}
<div class='post-row'>
<p class='post-title'>
<a href="{{ post.url | relative_url }}">
{{ post.title }}
</a>
</p>
<p class='post-date'>
{{ post.date | date: "%B %-d, %Y" }}
</p>
</div>
<p class='post-subtitle'>
{{ post.subtitle }}
</p>
<span class='hidden'>{{ forloop.index }}</span>
{% endfor %}
</div>
</div>