-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfun.html
More file actions
35 lines (30 loc) · 909 Bytes
/
fun.html
File metadata and controls
35 lines (30 loc) · 909 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
35
---
title: Jessy Lin • Fun
layout: default
---
<h1>Reads</h1>
<p>I keep track of everything I've read on <a href="https://www.goodreads.com/user/show/1576868-jessy">Goodreads</a>. Here are some of my all-time favorites:</p>
<ul>
{% for project in site.data.books %}
{% assign project = project_hash[1] %}
<li class="project">
<a class="project-title" href={{ project.link }}>
{{ project.title }}
</a>
<p class="project-description">{{ project.description }}</p>
</li>
{% endfor %}
</ul>
<h1>Projects</h1>
<p>Some things I've made:</p>
<ul class="projects">
{% for project in site.data.projects %}
{% assign project = project_hash[1] %}
<li class="project">
<a class="project-title" href={{ project.link }}>
{{ project.title }}
</a>
<p class="project-description">{{ project.description }}</p>
</li>
{% endfor %}
</ul>