Skip to content

Instantly share code, notes, and snippets.

@muffinista
Created June 12, 2013 16:27
Show Gist options
  • Save muffinista/5766917 to your computer and use it in GitHub Desktop.
Save muffinista/5766917 to your computer and use it in GitHub Desktop.
Gopher 2000 simple example
route '/' do
render :index
end
menu :index do
# output a text entry in the menu
text 'simple gopher example'
link 'current time', '/time'
br
end
route '/time' do
"It is currently #{Time.now}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment