Views
Location
Rendering
Views directly inside directory
views
├── partials
├── layouts
├── index.erb
└── 404.erbclass MainController < ApplicationController
helpers MainHelper if defined? MainHelper
get '/' do
erb :index
end
error Sinatra::NotFound do
erb :"404"
end
endViews inside sub-directories
Last updated