forked from syaning/slim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (23 loc) · 845 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
---
layout: default
---
<div class="home">
<section>
<h2 class="smallcap">Hello World!</h2>
<p>I'm Manthan, a grad student in Computer Science at Northeastern University, Boston. Things that interest me include good music, beautiful code and books!
</p>
<p>You can also find me on <a href="https://www.linkedin.com/in/manthan-io/">LinkedIn</a> and <a href="https://github.com/manthan787/">Github.</a>
</section>
<section>
<h2 class="smallcap">posts</h2>
<ul class="post-list">
{% for post in site.posts limit:5 %}
<li>
<time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%b %d, %Y" }}</time>
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
<p><a href="{{ "/archives/" | prepend: site.baseurl }}">view more...</a></p>
</section>
</div>