require 'rubygems' require 'atchoum' class SneezyWeb < Atchoum::Website def layout html do head do title 'I sneeze' end body do self << yield end end end def index_page text 'Checkout my ' a 'poem', :href => :poem end def poem_page h1 'The allergies season' p 'Flowers are red' p 'Buds open' p 'I sneeze a lot' end end