diff --git a/Gemfile b/Gemfile
index 14a6c3c..dd7be48 100644
--- a/Gemfile
+++ b/Gemfile
@@ -25,3 +25,4 @@ platforms :mingw, :x64_mingw, :mswin, :jruby do
 end
 # Performance-booster for watching directories on Windows
 gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
+gem "jekyll-paginate", group: :jekyll_plugins
diff --git a/Gemfile.lock b/Gemfile.lock
index 8c2aecc..65298e0 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -257,6 +257,7 @@ PLATFORMS
 DEPENDENCIES
   github-pages
   jekyll-feed (~> 0.12)
+  jekyll-paginate
   tzinfo (~> 1.2)
   tzinfo-data
   wdm (~> 0.1.1)
diff --git a/_config.yml b/_config.yml
index 2130fdb..5c78908 100644
--- a/_config.yml
+++ b/_config.yml
@@ -10,4 +10,8 @@ github_username:  nate2014jatc
 # Build settings
 plugins:
   - jekyll-feed
+  - jekyll-paginate
 theme: jekyll-theme-hacker
+host: 0.0.0.0
+paginate: 5
+
diff --git a/_posts/2020-11-05-First-Post.md b/_posts/2020-11-05-First-Post.md
index dc667dd..9f90903 100644
--- a/_posts/2020-11-05-First-Post.md
+++ b/_posts/2020-11-05-First-Post.md
@@ -1,6 +1,8 @@
+---
 layout: post
 title: "First Post"
-date: 2020-11-05 23:40:30 -0000
+date: 2020-11-05 23:40
+---
 
 This is the first post to this new micro-blog.
 Congratulations.
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..ae61e85
--- /dev/null
+++ b/index.html
@@ -0,0 +1,15 @@
+---
+layout: default
+---
+<h1>It is currently {{ site.time | date: "%m/%d/%Y %H:%M" }}</h1>
+
+<ul>
+{% for post in site.posts %}
+  <a href="{{ post.url }}">
+    <h2>{{ post.title }}</h2>
+    <p>{{ post.date | date: "%m/%d/%Y %H:%M"}}</p>
+    <p>{{ page.excerpt | truncate_words: 5 }}</p>
+  </a>
+  <hr>
+{% endfor %}
+</ul>
diff --git a/index.md b/index.md
deleted file mode 100644
index 0671507..0000000
--- a/index.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-# Feel free to add content and custom Front Matter to this file.
-# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
-
-layout: home
----