I am looking for a way to add a link to a stylesheet to a HAML template layout.
My layout:
!!! %html %head / some stuffs %body = yield
My template:
/ some other stuffs... /maybe a function like this in order to inject 'my_stylesheet' link in layout = content_for_head 'my_stylesheet'
Is it possible to do something like this?
sinatra haml
szymanowski
source share