Skip to content

Instantly share code, notes, and snippets.

@seeflanigan
Last active December 22, 2015 12:28
Show Gist options
  • Save seeflanigan/6472214 to your computer and use it in GitHub Desktop.
Save seeflanigan/6472214 to your computer and use it in GitHub Desktop.
require 'sinatra'
get '/' do
@name = # GET GIST HERE!!!
erb :home
end
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>My Page</title>
</head>
<body>
<p>home page</p>
<p><%= @name %></p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment