Revert "move blog to /blog"

This reverts commit 4d5a3768cc.
This commit is contained in:
Lukasz Skotarek 2021-03-04 22:08:54 +01:00
parent 4d5a3768cc
commit 28aafeae39
210 changed files with 3 additions and 0 deletions

20
index.html Normal file
View file

@ -0,0 +1,20 @@
---
layout: default
---
<div class="posts">
{% for post in site.posts %}
<article class="post">
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.post_title }}</a></h1>
<h6>Published on: {{ post.post_date | date: "%B %e, %Y" }} <br /></h6>
<div class="entry">
{{ post.excerpt }}
</div>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
</article>
{% endfor %}
</div>