diff --git a/.gitignore b/.gitignore
index 70d16e6..b06d0f5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,5 @@
App_Data
+is-cache
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
diff --git a/src/Themes/BenRameyTheme/Views/Blog-ListPart.liquid b/src/Themes/BenRameyTheme/Views/Blog-ListPart.liquid
new file mode 100644
index 0000000..706852c
--- /dev/null
+++ b/src/Themes/BenRameyTheme/Views/Blog-ListPart.liquid
@@ -0,0 +1,13 @@
+{% for item in Model.ContentItems %}
+{{ item | shape_build_display: "Summary" | shape_render }}
+{% endfor %}
+
+{% assign previousText = "← Newer Posts" | t %}
+{% assign nextText = "Older Posts →" | t %}
+{% assign previousClass = "previous" | t %}
+{% assign nextClass = "next" | t %}
+
+{% shape_pager Model.Pager previous_text: previousText, next_text: nextText
+, previous_class: previousClass, next_class: nextClass %}
+
+{{ Model.Pager | shape_render }}
\ No newline at end of file
diff --git a/src/Themes/BenRameyTheme/Views/BlogPost-Category.liquid b/src/Themes/BenRameyTheme/Views/BlogPost-Category.liquid
new file mode 100644
index 0000000..8652dc4
--- /dev/null
+++ b/src/Themes/BenRameyTheme/Views/BlogPost-Category.liquid
@@ -0,0 +1,9 @@
+
\ No newline at end of file
diff --git a/src/Themes/BenRameyTheme/Views/BlogPost-Tags-TaxonomyField-Tags.Display.liquid b/src/Themes/BenRameyTheme/Views/BlogPost-Tags-TaxonomyField-Tags.Display.liquid
new file mode 100644
index 0000000..80c80e1
--- /dev/null
+++ b/src/Themes/BenRameyTheme/Views/BlogPost-Tags-TaxonomyField-Tags.Display.liquid
@@ -0,0 +1,8 @@
+
\ No newline at end of file
diff --git a/src/Themes/BenRameyTheme/Views/Content-Blog.liquid b/src/Themes/BenRameyTheme/Views/Content-Blog.liquid
new file mode 100644
index 0000000..dcb0b07
--- /dev/null
+++ b/src/Themes/BenRameyTheme/Views/Content-Blog.liquid
@@ -0,0 +1,3 @@
+{{ Model.ContentItem.DisplayText }}
+
+
Comments
+ +