2013-01-07 16:45:48 +01:00
|
|
|
!!!
|
|
|
|
|
%html
|
|
|
|
|
%head
|
|
|
|
|
%meta{:charset => "utf-8"}
|
|
|
|
|
%meta{:name => "viewport", :content => "width=device-width, initial-scale=1, maximum-scale=1"}
|
2016-03-22 18:14:40 +01:00
|
|
|
%title= content_for?(:title) ? yield(:title) : (ENV['OSEM_NAME'] || 'OSEM')
|
2013-01-07 16:45:48 +01:00
|
|
|
%meta{:content => "", :name => "description"}
|
|
|
|
|
%meta{:content => "", :name => "author"}
|
2013-01-11 15:00:54 +01:00
|
|
|
= stylesheet_link_tag "/stylesheets/schedule/jquery-ui-1.9.2.custom.min"
|
|
|
|
|
= stylesheet_link_tag "/stylesheets/schedule/schedule"
|
|
|
|
|
|
|
|
|
|
= javascript_include_tag "/javascripts/schedule/jquery-1.8.3"
|
|
|
|
|
= javascript_include_tag "/javascripts/schedule/jquery-ui-1.9.2.custom.min"
|
|
|
|
|
= javascript_include_tag "/javascripts/schedule/date.format"
|
|
|
|
|
= javascript_include_tag "/javascripts/schedule/schedule"
|
2013-01-07 16:45:48 +01:00
|
|
|
= csrf_meta_tags
|
|
|
|
|
= yield(:head)
|
|
|
|
|
%body
|
|
|
|
|
.content
|
2016-03-22 18:14:40 +01:00
|
|
|
= yield
|