foodsoft/app/views/layouts/login.haml

19 lines
641 B
Plaintext
Raw Normal View History

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)
2012-08-06 12:00:40 +02:00
= stylesheet_link_tag 'main', 'rails_messages', 'nav', 'simple_form', :cache => "login_cached"
2011-05-11 15:24:34 +02:00
= javascript_include_tag 'jquery.min'
= yield(:head)
2009-01-06 11:49:19 +01:00
%body
#login
- if yield(:title)
%h1= yield(:title)
- flash.each do |name, msg|
= content_tag :div, msg, :class => "flash #{name}"
2009-01-06 11:49:19 +01:00
= yield
#meta
Foodcoop
= link_to_if Foodsoft.config[:homepage], Foodsoft.config[:name], Foodsoft.config[:homepage]