-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (46 loc) · 1.3 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
48
49
50
51
52
---
layout: default
---
<div class="home">
<p>
I’m Fengyang Wang. Sometimes I go by <code>@TotalVerb</code>. Currently, I
study Mathematics at the University of Waterloo.
</p>
<p>
You can find me on <a href="https://github.com/TotalVerb">GitHub</a>. Here
are some other places you might find me:
</p>
<ul>
<li>
<a href="http://stackoverflow.com/users/3575047/fengyang-wang">Stack
Overflow</a>
</li>
<li>
I (try to) maintain a blog,
<a href="https://kaninchensicher.wordpress.com/">Kaninchensicher</a>. The
posts are on a wide variety of topics, but usually I discuss current and
future events.
</li>
</ul>
<p>
You can also read my <a href="/résumé">résumé</a>, if you like. Thanks for
visiting!
</p>
<h1 class="page-heading">Posts</h1>
<ul class="post-list">
{% for post in site.posts %}
<li>
<article>
<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>
{{ post.excerpt }}
</article>
</li>
{% endfor %}
</ul>
<p class="rss-subscribe">
subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a>
</p>
</div>