Sorry, we've misplaced that URL or it's pointing to something that doesn't exist. Visit the home page to see if you can find it manually. Thanks!
+
+
Heads up!
+
This is a basic 404 page for use with GitHub Pages. It's source code is not generated by Jekyll.
+
+
+
+
+
diff --git a/CNAME b/CNAME
new file mode 100644
index 00000000000..8b40d9270d2
--- /dev/null
+++ b/CNAME
@@ -0,0 +1 @@
+andhyde.com
\ No newline at end of file
diff --git a/LICENSE.md b/LICENSE.md
new file mode 100644
index 00000000000..c344d146f49
--- /dev/null
+++ b/LICENSE.md
@@ -0,0 +1,9 @@
+# Released under MIT License
+
+Copyright (c) 2013 Mark Otto.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/README.md b/README.md
new file mode 100644
index 00000000000..b68668dc38e
--- /dev/null
+++ b/README.md
@@ -0,0 +1,69 @@
+# [Did](https://mdo.github.io/did)
+
+[Did](http://mdo.github.io/did) is a [Jekyll](http://jekyllrb.com) theme, designed and built by [@mdo](https://twitter.com/mdo). It's based on another theme, [Hyde](http://andhyde.com). Did is designed to showcase your content first and foremost. Navigation and extraneous information remains offscreen until the reader requests it.
+
+
+
+The name originates from a rather well-known, and unsurprisingly relevant, psychiatric condition, [dissociative identity disorder](http://en.wikipedia.org/wiki/Dissociative_identity_disorder). (Protip: It's just like Dr. Jekyll & Mr. Hyde.)
+
+
+## Usage
+
+### 1. Install Jekyll
+
+Did is built for use with Jekyll, so naturally you'll need to install that. On Macs, it's rather straightforward:
+
+```bash
+$ gem install jekyll
+```
+
+**Windows users:** Windows users have a bit more work to do, but luckily [@juthilo](https://github.com/juthilo) has your back with his [Run Jekyll on Windows](https://github.com/juthilo/run-jekyll-on-windows) guide.
+
+You may also need to install Pygments, the Python syntax highlighter for code snippets that places nicely with Jekyll. Read more about this [in the Jekyll docs](http://jekyllrb.com/docs/templates/#code_snippet_highlighting).
+
+### 2a. Quick start
+
+To help anyone with any level of familiarity with Jekyll quickly get started, Did includes everything you need for a basic Jekyll site. To that end, just download Did and start up Jekyll.
+
+### 2b. Roll your own Jekyll site
+
+Folks wishing to use Jekyll's templates and styles can do so with a little bit of manual labor. Download Did and then copy what you need (likely `_layouts/`, `*.html` files, `atom.xml` for RSS, and `public/` for CSS, JS, etc.).
+
+### 3. Running locally
+
+To see your Jekyll site with Did applied, start a Jekyll server. In Terminal, from `/did` (or whatever your Jekyll site's root directory is named):
+
+```bash
+$ jekyll serve
+```
+
+Open in your browser, and voilà. You're done.
+
+
+## Options
+
+Did includes a some customizable options, typically applied via classes on the `` element.
+
+### Reverse layout
+
+Reverse the page orientation with a single class.
+
+```html
+
+ ...
+
+```
+
+
+## Author
+
+**Mark Otto**
+
+
+
+
+## License
+
+Open sourced under the [MIT license](LICENSE.md).
+
+<3
diff --git a/_config.yml b/_config.yml
new file mode 100644
index 00000000000..0f2637fb367
--- /dev/null
+++ b/_config.yml
@@ -0,0 +1,12 @@
+title: Did
+tagline: 'A Jekyll theme, with personalities'
+description: 'Did is a Jekyll theme with multiple personalities: the content, and the chrome. Made by @mdo.'
+url: http://andhyde.com
+version: 1.0.0
+author:
+ name: ''
+ email: ''
+markdown: rdiscount
+permalink: pretty
+pygments: true
+paginate: 5
diff --git a/_includes/head.html b/_includes/head.html
new file mode 100644
index 00000000000..859874b3d6b
--- /dev/null
+++ b/_includes/head.html
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+ {% if page.title %}{{ page.title }} · {% endif %}
+ {{ site.tagline }}
+
+
+
+
+ {% if page.layout == "focused" %}
+
+ {% endif %}
+
+
+
+
+
+
+
+
+
+
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 00000000000..e526d844ef2
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,42 @@
+
+
+
+ {% include head.html %}
+
+
+
+
diff --git a/_posts/2013-12-31-whats-jekyll.md b/_posts/2013-12-31-whats-jekyll.md
new file mode 100644
index 00000000000..a6d28b59212
--- /dev/null
+++ b/_posts/2013-12-31-whats-jekyll.md
@@ -0,0 +1,12 @@
+---
+layout: post
+title: What's Jekyll?
+---
+
+[Jekyll](http://jekyllrb.com) is a static site generator, an open-source tool for creating simple yet powerful websites of all shapes and sizes. From [the project's readme](https://github.com/mojombo/jekyll/blob/master/README.markdown):
+
+ > Jekyll is a simple, blog aware, static site generator. It takes a template directory [...] and spits out a complete, static website suitable for serving with Apache or your favorite web server. This is also the engine behind GitHub Pages, which you can use to host your project’s page or blog right here from GitHub.
+
+It's an immensely useful tool and one we encourage you to use here with Hyde.
+
+Find out more by [visiting the project on GitHub](https://github.com/mojombo/jekyll).
\ No newline at end of file
diff --git a/_posts/2014-01-01-example-content.md b/_posts/2014-01-01-example-content.md
new file mode 100644
index 00000000000..08642144d0f
--- /dev/null
+++ b/_posts/2014-01-01-example-content.md
@@ -0,0 +1,55 @@
+---
+layout: post
+title: Example content
+---
+
+This blog post shows a few different types of content that's supported and styled with Hyde. Basic typography, images, and code are all supported.
+
+-----
+
+Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. *Aenean eu leo quam.* Pellentesque ornare sem lacinia quam venenatis vestibulum. Sed posuere consectetur est at lobortis. Cras mattis consectetur purus sit amet fermentum.
+
+> Curabitur blandit tempus porttitor. Nullam quis risus eget urna mollis ornare vel eu leo. Nullam id dolor id nibh ultricies vehicula ut id elit.
+
+Etiam porta **sem malesuada magna** mollis euismod. Cras mattis consectetur purus sit amet fermentum. Aenean lacinia bibendum nulla sed consectetur.
+
+## Heading
+
+Vivamus sagittis lacus vel augue rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.
+
+### Sub-heading
+
+Cum sociis natoque penatibus et magnis dis `code element` montes, nascetur ridiculus mus.
+
+{% highlight js %}
+// Example can be run directly in your JavaScript console
+
+// Create a function that takes two arguments and returns the sum of those arguments
+var adder = new Function("a", "b", "return a + b");
+
+// Call the function
+adder(2, 6);
+// > 8
+{% endhighlight %}
+
+Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa.
+
+### Sub-heading
+
+Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.
+
+* Praesent commodo cursus magna, vel scelerisque nisl consectetur et.
+* Donec id elit non mi porta gravida at eget metus.
+* Nulla vitae elit libero, a pharetra augue.
+
+Donec ullamcorper nulla non metus auctor fringilla. Nulla vitae elit libero, a pharetra augue.
+
+1. Vestibulum id ligula porta felis euismod semper.
+2. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
+3. Maecenas sed diam eget risus varius blandit sit amet non magna.
+
+Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis.
+
+-----
+
+Want to see something else added? Open an issue.
\ No newline at end of file
diff --git a/_posts/2014-01-02-hello-world.md b/_posts/2014-01-02-hello-world.md
new file mode 100644
index 00000000000..646d8c90cc8
--- /dev/null
+++ b/_posts/2014-01-02-hello-world.md
@@ -0,0 +1,33 @@
+---
+layout: post
+title: Introducing Did
+---
+
+[Did](http://mdo.github.io/did) is a [Jekyll](http://jekyllrb.com) theme, designed and built by [@mdo](https://twitter.com/mdo). It's based on another theme, [Hyde](http://andhyde.com). The name originates from a rather well-known, and unsurprisingly relevant, psychiatric condition.
+
+> Dissociative identity disorder (DID), also known as multiple personality disorder (MPD), is an extremely rare mental disorder characterized by at least two distinct and relatively enduring identities or dissociated personality states that alternately control a person's behavior.
+>
+> Source: http://en.wikipedia.org/wiki/Dissociative_identity_disorder.
+
+Did is designed to showcase your content first and foremost. Navigation and extraneous information remains offscreen until the reader requests it. Did is built mobile first, meaning it looks and behaves great on devices from phones to desktops. It ships with everything you need to start a new Jekyll project. Feel free to snag whatever you need to shoehorn Did into an existing Jekyll site, too.
+
+### Features
+
+* Complete Jekyll setup included (layouts, config, 404, RSS feed, posts, and page)
+* Mobile friendly design and development
+* Sliding sidebar (built with only CSS)
+* Sidebar includes support for textual modules and a basic navigation
+* Two orientations for content and sidebar, default (left sidebar) and reverse (right sidebar)
+* Support for a wide gamut of HTML elements
+* Related posts (time-based, because Jekyll) below each post
+* Syntax highlighting, courtesy Pygments (the Python-based code snippet highlighter)
+
+### Browser support
+
+Did is by perference a forward-thinking project. In addition to the latest versions of Chrome, Safari (mobile and desktop), and Firefox, it is only compatible with Internet Explorer 9 and above.
+
+### Download
+
+Did is developed on and hosted with GitHub. Head to the GitHub repository for downloads, bug reports, and features requests.
+
+Thanks!
diff --git a/about.html b/about.html
new file mode 100644
index 00000000000..9a01c67af3d
--- /dev/null
+++ b/about.html
@@ -0,0 +1,28 @@
+---
+layout: default
+title: About
+---
+
+
+
+
About
+
+
Mark Otto is a designer living and working in San Francisco. Originally from Wisconsin, he freelanced his way through high school and college before moving to California to work at a design firm, ZURB, in 2007. There he designed and developed dozens of projects with clients large and small, including Photobucket, Britney Spears, SafetyWeb, and Zazzle. In early 2010, after a two-and-a-half year stint at ZURB, he left to become a product designer at Twitter.
+
Since joining Twitter, Otto has worked on numerous projects including the Promoted Products suite, Twitter.com, the Twitter Help Center, several internal tools, and most recently the popular open-source front-end toolkit Bootstrap.
+
+
+
+
About the site
+
This URL has been my online home for many years, manifesting at times as a blog or a portfolio until landing on this current single-column blog. Today it is an outlet for my design- and development-related ramblings.