This repository has been archived on 2025-11-13. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
tonton-web/tonton_web.rb

25 lines
No EOL
488 B
Ruby

require 'gollum/app'
require 'sinatra/flash'
require "sqlite3"
class TonTonWeb < Sinatra::Base
set :host_authorization, { permitted_hosts: ['localhost', 'mytonton.com.br'] }
set :sessions, true
get '/' do
redirect "/home"
end
get '/home' do
markdown File.read('readme.md'), layout_engine: :erb, layout: true
end
get '/building.md' do
markdown File.read('building.md'), layout_engine: :erb, layout: true
end
get '/**.md' do
markdown request.path_info.to_sym
end
end