diff --git a/_config.yml b/_config.yml
index 6b31efbe..c975528f 100644
--- a/_config.yml
+++ b/_config.yml
@@ -8,7 +8,6 @@ relative_permalinks: true
title: phil-opp's blog
full_title: Writing an OS in Rust
tagline: Philipp Oppermann's blog
-paginate: 10
baseurl: ""
url: http://os.phil-opp.com
diff --git a/_includes/post_teaser.html b/_includes/post_teaser.html
new file mode 100644
index 00000000..aafb2c0b
--- /dev/null
+++ b/_includes/post_teaser.html
@@ -0,0 +1,23 @@
+
+
+ {{ post.title }}
+
+
+
+
+
+ {% if post.updated %}
+ (updated on {{ post.updated | date_to_string }})
+ {% endif %}
+
+
+ {% if post.content contains '' %}
+ {{ post.content | split:'' | first }}
+ {% else %}
+ {{ post.excerpt }}
+ {% endif %}
+