# Slide title
!SLIDE
## A good point
!SLIDE
> This is the coolest thing ever.
@@@ ruby
# A rack app
proc {
[200, { 'Location' => '/' },
"You are being redirected to /"
]
}
@@@
# A rack app
proc {
[200, { 'Location' => '/' },
"You are being redirected to /"
]
}
@@@ js
// Some JavaScript
function() {
if (1 == 2) {
return "This is silly."
}
}
@@@
// Some JavaScript
function() {
if (1 == 2) {
return "This is silly."
}
}
#fizz {
color: #ffa;
}
.foo {
text-decoration: underline;
}
<h1>A test</h1>
<p>
<%= @foo.bar(:fizz => 'buzz') %>
</p>