-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (39 loc) · 1.06 KB
/
Copy pathindex.html
File metadata and controls
49 lines (39 loc) · 1.06 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
layout: default
---
<div class="home">
<p>
My name is Lawrence and welcome to my site.
</p>
<p>
I call San Francisco my home now. Before that, I was in Canada. Outside of work,
I enjoy building things, reading, riding my bike (for fun and for getting around),
deep-diving into local and national politics, backpacking in the mountains, and many
more!
</p>
<br/>
<p>
Lastly, here are some of my public blog posts. I do not write publicly
regularly, though I do enjoy writing and write often (private journals /
docs at work).
</p>
<div class="writing">
<ul class="post-list">
{% for post in site.posts %}
{% if post.useful %}
<li>
<span class="post-meta">{{ post.date | date: "%Y-%m-%d" }}</span>
<span class="post-link">
<a href="{{ post.url | prepend: site.baseurl }}">
{{ post.title }}
</a>
</span>
</li>
{% endif %}
{% endfor %}
</ul>
<p>
View <a href="/archive">archive</a> for more.
</p>
</div>
</div>