diff --git a/_includes/nav.md b/_includes/nav.md
index ac97579f..a3239d8d 100644
--- a/_includes/nav.md
+++ b/_includes/nav.md
@@ -5,7 +5,7 @@
Asynchronous templates for the browser and nodejs
- - About
+ - About
-
Guides
@@ -14,7 +14,6 @@
- Dust Helpers
- Using Filters
- Partials
- - Layouts
- Base and override templates
- Tips and Tricks
- Advanced Topics
diff --git a/about.md b/about.md
deleted file mode 100644
index 39202696..00000000
--- a/about.md
+++ /dev/null
@@ -1,71 +0,0 @@
----
-title: DustJS by LinkedIn
-layout: default
-permalink: /about/
----
-
-# What is Dust?
-
-Dust is a Javascript templating engine. It inherits its look from the [ctemplate](https://code.google.com/p/ctemplate/) family of languages, and is designed to run asynchronously on both the server and the browser.
-
-# Why Dust?
-
-This overview won't tell you about all the features Dust has to offer. Instead, we'll focus on some of the differentiators between Dust and other Javascript templating languages.
-
-## Not logicless... just less logic
-
-You cannot write arbitrary Javascript inside Dust templates. However, you still have basic logical operators like comparison, less than / greater than, and exists / not exists. This strikes a balance between template readability and data control.
-
-Instead, Dust encourages you to move the logic to your data model. You can create functions inside the model that are then called by the template, giving you complete control over how your templates render without cluttering them with logic.
-
-So instead of this:
-
-```
-{@eq key="userExists" value="true"}
- {@eq key="passwordOK" value="true"}
- {@gt key="userLevel" value=3}
- {@eq key="accountActive" value="true"}
- Welcome!
- {/eq}
- {/gt}
- {/eq}
-{/eq}
-```
-
-Dust encourages you to write this:
-
-```
-{#userAuthenticated}
- Welcome!
-{/userAuthenticated}
-```
-
-## Asynchronous template loading, rendering, and streaming
-
-Dust can load and render templates on-the-fly, so you don't have to preload them. For example, instead of concatenating all templates into a file that's loaded via a `