# -*- coding: utf-8 -*-

require 'rubygems'
require 'sinatra'
require 'haml'
require 'slim'

module Sinatra
  module Templates
    def slim(template, options={}, locals={})
      render :slim, template, options, locals
    end 
  end
end

helpers do
  include Rack::Utils; alias_method :h, :escape_html
end

get '/' do
  slim :index
end

post '/hello' do
  slim :hello
end