Newer
Older
sinatra-exercise / hoge.rb
@HIROSE Yuuji HIROSE Yuuji on 30 Nov 2018 268 bytes Split views into files with layout.erb
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-
require 'sinatra'
require 'sinatra/reloader'

get '/' do
  @title = "My First Script of Sinatra"
  erb :index
end

get '/hoge/:name' do
  "HOGE2!"+params[:name]
end

get '/app' do
  @title = "申込ページ"
  erb :app
end