aboutsummaryrefslogtreecommitdiff
path: root/blog.html
diff options
context:
space:
mode:
Diffstat (limited to 'blog.html')
-rw-r--r--blog.html27
1 files changed, 0 insertions, 27 deletions
diff --git a/blog.html b/blog.html
deleted file mode 100644
index 0a9f265..0000000
--- a/blog.html
+++ /dev/null
@@ -1,27 +0,0 @@
----
-layout: default
-title: Blog
----
-
-<h1>Blog</h1>
-
-<ul class="posts">
- {% for post in site.posts %}
- <li>
- <article class="post">
- <header>
- <time datetime="{{ post.date }}">{{ post.date | date: "%m.%d.%Y" }}</time>
- <h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
- </header>
-
- <div class="entry">
- {{ post.content | truncatewords:85}}
-
- <p class="read-more">
- <a href="{{ post.url }}">Read more</a>
- </p>
- </div>
- </article>
- </li>
- {% endfor %}
-</ul>