-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (42 loc) · 1.17 KB
/
index.html
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
---
layout: default
---
<div class="home">
<div class="intro-wrapper">
<h1 class="page-intro">Hi, I'm Fernando.</h1>
<h2 class="subtitle">
I work as a Product Manager at
<a href="https://lang.ai" class="link" title="Visit the Lang.ai site"
>Lang.ai</a
>.
</h2>
</div>
<h1 class="page-heading">Latest Notes & Ramblings</h1>
<ul class="post-list">
{% assign items = site.notes | sort: 'date' | reverse %} {% for note in
items limit:5 %}
<li>
<span class="post-meta">{{ note.date | date: "%b %-d, %Y" }}</span>
<h2>
<a class="post-link" href="{{ note.url | prepend: site.baseurl }}"
>{{ note.title }}</a
>
</h2>
</li>
{% endfor %}
</ul>
<h1 class="page-heading">Latest Posts</h1>
<ul class="post-list">
{% assign latestPosts = site.posts | sort: 'date' | reverse %} {% for post
in latestPosts limit:5 %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}"
>{{ post.title }}</a
>
</h2>
</li>
{% endfor %}
</ul>
</div>