forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (21 loc) · 837 Bytes
/
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
---
layout: default
---
<div>
<p>A site about nature and exploration</h1>
</div>
<div>
<p>This blog contains some very informal analysis of the data from a “nature journal” project I began to track the animals in my area during the spring of 2020.</p>
</div>
<div class="posts">
{% for post in site.posts %}
<article class="post">
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
<div class="entry">
{{ post.excerpt }}
</div>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
</article>
{% endfor %}
</div>
<div><p>Credit and thanks: This blog was created with Bary Clark’s <a href="https://github.com/barryclark/jekyll-now">Jekyll Now</a> theme, as part of the NULab Project Seminar course at Northeastern University.</p></div>