diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..43e639be --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +_site/ +.idea/ diff --git a/_config.yml b/_config.yml index e69de29b..2fc224a9 100644 --- a/_config.yml +++ b/_config.yml @@ -0,0 +1,2 @@ +auto: true +server: true diff --git a/_includes/includeme.markdown b/_includes/includeme.markdown new file mode 100644 index 00000000..79b04539 --- /dev/null +++ b/_includes/includeme.markdown @@ -0,0 +1,4 @@ +# this is markdown + +this is a paragraph + diff --git a/_layouts/default.html b/_layouts/default.html index e0524f72..3092f466 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -3,6 +3,7 @@ Iron.io: BOOM + Home

{{ content }} diff --git a/_posts/2012-02-21-test.markdown b/_posts/2012-02-21-test.markdown new file mode 100644 index 00000000..d5650b69 --- /dev/null +++ b/_posts/2012-02-21-test.markdown @@ -0,0 +1,15 @@ +--- +layout: default +title: Welcome +--- + +# Post Title + +this is a paragraph + +{% highlight ruby %} +def foo + puts 'foo' +end +{% endhighlight %} + diff --git a/index.html b/index.html deleted file mode 100644 index 5cde4c43..00000000 --- a/index.html +++ /dev/null @@ -1 +0,0 @@ -Test page diff --git a/index.markdown b/index.markdown new file mode 100644 index 00000000..33351d38 --- /dev/null +++ b/index.markdown @@ -0,0 +1,9 @@ +--- +layout: default +title: Welcome +--- + +# Welcome! + +Here is a [page](/2012/02/21/test.html) +