Skip to content

Instantly share code, notes, and snippets.

View daz-codes's full-sized avatar

DAZ daz-codes

View GitHub Profile
__END__
@@layout
doctype html
html
head
meta charset="utf-8"
title Sinatra Flash
body
== yield
@@index
h1 Sinatra Flash
form action="/time" method="POST"
input type="submit" value="What Time Is It?" title="What time is it?"
post '/time' do
@time = Time.now.strftime("%I:%M:%S")
redirect '/'
end
@@index
h1 Sinatra Flash
form action="/time" method="POST"
input type="submit" value="What Time Is It?" title="What time is it?"
p The time is #{@time}
post '/time' do
flash[:time] = Time.now.strftime("%I:%M:%S")
redirect '/'
end
@@index
h1 Sinatra Flash
form action="/time" method="POST"
input type="submit" value="What Time Is It?" title="What time is it?"
p The time is #{flash[:time]}
@@index
h1 The Flash Farm Shop!
p Choose which animals you would like to buy from our shop.
ul#animals
li
h2 Duck
img src="/duck.png"
form action="/buy/duck" method="POST"
input type="submit" value="Add to Basket" title="Buy me, quack!"
li
post '/buy/:animal' do
#code that adds an animal to the shopping basket goes here
flash[:success] = "A #{params[:animal]} was successfully added to your basket"
redirect '/'
end
@@layout
doctype html
html
head
meta charset="utf-8"
title The Flash Farm Shop
link rel="stylesheet" media="screen, projection" href="/styles.css"
body
- if flash[:success]
.flash== flash[:success]
@@styles
.flash{
width: 600px;
padding: 5px;
font-weight: bold;
margin: 20px;
background:#ddd;
color:#666;border:1px solid #ccc;
}