Iliad.Application subclass: UrPicsApplication [ UrPicsApplication class >> path [ ^'/urpics' ] updatePage [ super updatePage. self page headElement title: 'UrPics - show your pictures!'. self page headElement stylesheet href: '/resources/style.css'. ] index [ ^[ :e | e add: UnknownHome new build ] ] ] Iliad.Widget subclass: UnknownHome [ contents [ ^[ :e | e h1: 'UrPics - show your pictures!'. ] ] ]