2009-01-06 11:49:19 +01:00
|
|
|
!!!
|
|
|
|
%html
|
|
|
|
%head
|
|
|
|
%meta{"http-equiv" => "content-type", :content => "text/html;charset=UTF-8"}
|
|
|
|
%title= "FoodSoft - " + (yield(:title) or controller.controller_name)
|
2010-02-09 21:40:02 +01:00
|
|
|
= stylesheet_link_tag 'main', 'rails_messages', 'nav', :cache => "all_cached"
|
2011-05-11 15:24:34 +02:00
|
|
|
= javascript_include_tag 'jquery.min'
|
2009-10-17 18:42:07 +02:00
|
|
|
= yield(:head)
|
2009-01-06 11:49:19 +01:00
|
|
|
%body
|
|
|
|
#login
|
|
|
|
- if yield(:title)
|
|
|
|
%h1= yield(:title)
|
2011-05-11 13:38:46 +02:00
|
|
|
- flash.each do |name, msg|
|
|
|
|
= content_tag :div, msg, :class => "flash #{name}"
|
2009-01-06 11:49:19 +01:00
|
|
|
= yield
|
|
|
|
#meta
|
|
|
|
Foodcoop
|
2009-03-24 17:25:33 +01:00
|
|
|
= link_to_if Foodsoft.config[:homepage], Foodsoft.config[:name], Foodsoft.config[:homepage]
|