diff --git a/content/index.md b/content/index.md
index 171b3a68790a..c60c51734359 100644
--- a/content/index.md
+++ b/content/index.md
@@ -3,6 +3,9 @@ title: webpack
---
## Write your code.
+
+
+
**app.js**
```js
@@ -11,6 +14,8 @@ import bar from './bar';
bar();
```
+
+
**bar.js**
```js
@@ -19,8 +24,14 @@ export default function bar() {
}
```
+
+
+
## Bundle with webpack.
+
+
+
**webpack.config.js**
```js
@@ -32,6 +43,8 @@ module.exports = {
}
```
+
+
**page.html**
```html
@@ -48,5 +61,8 @@ module.exports = {
Then run `webpack` on the command-line to create `bundle.js`.
+
+
+
## It's that simple.
## [Get Started](/get-started)
diff --git a/styles/homepage.scss b/styles/homepage.scss
new file mode 100644
index 000000000000..1b4cd15f67e4
--- /dev/null
+++ b/styles/homepage.scss
@@ -0,0 +1,30 @@
+.homepage {
+ &__left,
+ &__right {
+ width: 100%;
+ float: left;
+
+ @include break {
+ width: 50%;
+ padding: 0 15px;
+ }
+ }
+
+ &__wrap {
+ display: block;
+
+ @include break {
+ margin: 0 -30px;
+ }
+
+ &:before,
+ &:after {
+ content: " ";
+ display: table;
+ }
+
+ &:after {
+ clear: both;
+ }
+ }
+}
\ No newline at end of file
diff --git a/styles/index.scss b/styles/index.scss
index 69f73b5ce11e..8e12733dfbc8 100644
--- a/styles/index.scss
+++ b/styles/index.scss
@@ -8,6 +8,7 @@
@import 'vars';
@import 'fonts';
@import 'functions';
+@import 'mixins';
@import './reset';
@@ -85,3 +86,4 @@ details:focus, summary:focus{
}
@import './markdown';
+@import './homepage';
\ No newline at end of file
diff --git a/utilities/markdown.js b/utilities/markdown.js
index 095d850de954..9936a8b1a1ff 100644
--- a/utilities/markdown.js
+++ b/utilities/markdown.js
@@ -71,7 +71,7 @@ module.exports = function(section) {
rendered = rendered.replace(/\n.*?MARKDOWNSUMMARYSTART.*?\n/g, "