diff options
Diffstat (limited to '_posts')
| -rw-r--r-- | _posts/2011-12-31-about.md | 36 | ||||
| -rw-r--r-- | _posts/2011-12-31-test-post.md | 25 |
2 files changed, 25 insertions, 36 deletions
diff --git a/_posts/2011-12-31-about.md b/_posts/2011-12-31-about.md deleted file mode 100644 index cc64685..0000000 --- a/_posts/2011-12-31-about.md +++ /dev/null | |||
| @@ -1,36 +0,0 @@ | |||
| 1 | --- | ||
| 2 | layout: post | ||
| 3 | title: "Welcome to Jekyll!" | ||
| 4 | date: 2015-11-17 16:16:01 -0600 | ||
| 5 | categories: | ||
| 6 | --- | ||
| 7 | |||
| 8 | ## okidoki | ||
| 9 | |||
| 10 | Here is my page and it's awesome. | ||
| 11 | |||
| 12 | ```javascript | ||
| 13 | console.log('asasdasd'); | ||
| 14 | ``` | ||
| 15 | |||
| 16 | ```ruby | ||
| 17 | def show | ||
| 18 | @widget = Widget(params[:id]) | ||
| 19 | respond_to do |format| | ||
| 20 | format.html # show.html.erb | ||
| 21 | format.json { render json: @widget } | ||
| 22 | end | ||
| 23 | end | ||
| 24 | ``` | ||
| 25 | |||
| 26 | --- | ||
| 27 | |||
| 28 | {% highlight ruby %} | ||
| 29 | def show | ||
| 30 | @widget = Widget(params[:id]) | ||
| 31 | respond_to do |format| | ||
| 32 | format.html # show.html.erb | ||
| 33 | format.json { render json: @widget } | ||
| 34 | end | ||
| 35 | end | ||
| 36 | {% endhighlight %} | ||
diff --git a/_posts/2011-12-31-test-post.md b/_posts/2011-12-31-test-post.md new file mode 100644 index 0000000..ebc76e5 --- /dev/null +++ b/_posts/2011-12-31-test-post.md | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | --- | ||
| 2 | layout: post | ||
| 3 | title: "Test post" | ||
| 4 | categories: | ||
| 5 | --- | ||
| 6 | |||
| 7 | ## okidoki | ||
| 8 | |||
| 9 | Here is my page and it's awesome. | ||
| 10 | |||
| 11 | ```js | ||
| 12 | console.log('asasdasd'); | ||
| 13 | ``` | ||
| 14 | |||
| 15 | This is all ok | ||
| 16 | |||
| 17 | ```ruby | ||
| 18 | def show | ||
| 19 | @widget = Widget(params[:id]) | ||
| 20 | respond_to do |format| | ||
| 21 | format.html # show.html.erb | ||
| 22 | format.json { render json: @widget } | ||
| 23 | end | ||
| 24 | end | ||
| 25 | ``` | ||
