aboutsummaryrefslogtreecommitdiff
path: root/_posts/2011-12-31-test-post.md
blob: ebc76e55f7541a76d7777f9bff313cc1d5d07ed6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
layout: post
title:  "Test post"
categories:
---

## okidoki

Here is my page and it's awesome.

```js
console.log('asasdasd');
```

This is all ok

```ruby
def show
  @widget = Widget(params[:id])
  respond_to do |format|
    format.html # show.html.erb
    format.json { render json: @widget }
  end
end
```