-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·43 lines (27 loc) · 1.13 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
---
layout: default
title: Home
---
<div class="single row gutters">
<div class="col span_10">
<p>I'm Aaron Meyer: a bioengineer, cyclist, and nerd.</p>
<p> You can also find me on <a rel="me" href="https://mastodon.social/@aarmey">Mastodon</a>, <a href="https://twitter.com/aarmey">Twitter</a>, <a href="https://github.com/aarmey">Github</a>, <a href="https://www.linkedin.com/in/thana/">LinkedIn</a>, and <a href="https://scholar.google.com/citations?user=D-CQeRMAAAAJ">Google Scholar</a>. </p>
</div>
</div>
<section class="archive">
<div class="bundle row gutters">
{% for post in site.posts limit:10 %}
<article class="single row gutters">
<h3><a href="{{ site.baseurl }}{{ post.url }}" title="{{ post.title }}" class="col span_10">{{ post.title }}</a></h3>
<div class="post-date col span_2">
<time datetime="{{ post.date | date: '%Y-%m-%d' }}">{% include date-link.html %}</time>
</div>
<div class="col span_12">
{{ post.content }}
</div>
</article>
{% endfor %}
</div>
<div><a href="{{ site.baseurl }}archive/" title="Archives" class="col span_12">Archives</a></div>
</section>
<!-- UPDATE //-->