Skip to content

Instantly share code, notes, and snippets.

@beaugaines
Created October 7, 2017 20:22
Show Gist options
  • Save beaugaines/16a1c39b835e54f41c4cb6e98cf48f75 to your computer and use it in GitHub Desktop.
Save beaugaines/16a1c39b835e54f41c4cb6e98cf48f75 to your computer and use it in GitHub Desktop.
Sinatra stories app
require 'sinatra'
get '/' do
erb :index
end
__END__
@@index
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Storyline</title>
</head>
<body>
<header>
<h1>Storyline</h1>
</header>
<main>
<h2>Add your story here:</h2>
</main>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment