mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
20 lines
494 B
Text
20 lines
494 B
Text
|
!!! strict
|
||
|
%html
|
||
|
%head
|
||
|
%title= title
|
||
|
%link{ :media => 'screen', :type => 'text/css', :href => '/sinatra.css', :rel => 'stylesheet' }
|
||
|
%body
|
||
|
#page
|
||
|
%h1
|
||
|
%a{ :href => '/'}= 'Sinatra'
|
||
|
%ul#navigation
|
||
|
%li
|
||
|
%a{ :href => '/' } The Hat
|
||
|
%li
|
||
|
%a{ :href => '/book' } The Book
|
||
|
%li
|
||
|
%a{ :href => '/api' } The API
|
||
|
%li
|
||
|
%a{ :href => 'http://github.com/bmizerany/sinatra' } The Source
|
||
|
#content= content
|