diff --git a/_pages/index.md b/_pages/index.md
new file mode 100644
index 0000000..d0f65ae
--- /dev/null
+++ b/_pages/index.md
@@ -0,0 +1,140 @@
+---
+permalink:  "/index.html"
+layout:     page
+sidebar:    false
+id:         index
+title:      "Home"
+---
+
+There is a significant amount of subtle, yet precisely calibrated, styling to ensure that your content is emphasized while still looking aesthetically pleasing.
+
+All links are easy to [locate and discern](/), yet don't detract from the [harmony of a paragraph](/).
+The _same_ goes for italics and __bold__ elements.
+Even the the strikeout works if for some reason you need to update your post.
+For consistency's sake, The same goes for insertions, of course.
+
+### Code, with syntax highlighting
+
+Here's an example of some ruby code with line anchors.
+
+{% highlight ruby lineanchors %}
+    # The most awesome of classes
+    class Awesome < ActiveRecord::Base
+        include EvenMoreAwesome
+
+        validates_presence_of :something
+        validates :email, email_format: true
+
+        def initialize(email, name = nil)
+            self.email = email
+            self.name = name
+            self.favorite_number = 12
+            puts 'created awesomeness'
+        end
+
+        def email_format
+            email =~ /\S+@\S+\.\S+/
+        end
+    end
+{% endhighlight %}
+
+Here's some CSS:
+
+{% highlight css %}
+    .foobar {
+        /* Named colors rule */
+        color: tomato;
+    }
+{% endhighlight %}
+
+Here's some JavaScript:
+
+{% highlight js %}
+    var isPresent = require('is-present')
+
+    module.exports = function doStuff(things) {
+        if (isPresent(things)) {
+            doOtherStuff(things)
+        }
+    }
+{% endhighlight %}
+
+Here's some HTML:
+
+{% highlight html %}
+    
++ +### There's more being added all the time + +Checkout the +[Github repository](https://github.com/johnotander/pixyll) +to request, or add, features. + +Happy writing. + +--- + +[^1]: Important information that may distract from the main text can go in footnotes. \ No newline at end of file diff --git a/index.html b/index.html deleted file mode 100644 index ce4965c..0000000 --- a/index.html +++ /dev/null @@ -1,32 +0,0 @@ ---- -layout: default -title: Home ---- - -Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away.
+ +
- {{ post.content | truncatewords: 30 | strip_html }} -
-