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:06:24 +01:00
|
|
|
= stylesheet_link_tag 'main', 'rails_messages', 'nav', :cache => "all_cached"
|
2009-02-18 12:01:51 +01:00
|
|
|
= stylesheet_link_tag "print", :media => "print"
|
2009-06-19 21:38:51 +02:00
|
|
|
<!--[if lte IE 7]>
|
|
|
|
= stylesheet_link_tag 'ie_hacks'
|
|
|
|
<![endif]-->
|
2010-02-09 21:06:24 +01:00
|
|
|
= javascript_include_tag 'prototype', 'effects', 'controls', 'application', 'ordering', :cache => "all_cached"
|
2009-10-17 12:22:13 +02:00
|
|
|
= yield(:head)
|
2009-01-06 11:49:19 +01:00
|
|
|
%body
|
2009-02-18 12:01:51 +01:00
|
|
|
#logininfo= render :partial => 'shared/loginInfo'
|
|
|
|
|
|
|
|
#header
|
|
|
|
#logo
|
2010-03-20 13:45:58 +01:00
|
|
|
- link_to root_path do
|
2009-02-18 12:01:51 +01:00
|
|
|
<span>food</span>soft
|
2009-03-24 17:25:33 +01:00
|
|
|
%span{:style => "color:white; font-size:45%; letter-spacing: -1px;"}= Foodsoft.config[:name]
|
2009-02-18 12:01:51 +01:00
|
|
|
#nav= render :partial => 'layouts/main_tabnav'
|
|
|
|
|
|
|
|
#main
|
|
|
|
#content
|
|
|
|
- if flash[:notice]
|
|
|
|
%h3.notice#flashNotice= flash[:notice]
|
|
|
|
- if flash[:error]
|
|
|
|
%h3.error#flashError= flash[:error]
|
|
|
|
#loader{:style => "display:none;"}= image_tag("loader.gif", :border => 0)
|
2009-08-12 18:41:25 +02:00
|
|
|
- if show_title?
|
2009-02-18 12:01:51 +01:00
|
|
|
%h1= yield(:title)
|
|
|
|
= yield
|
2009-08-11 19:49:31 +02:00
|
|
|
#ajax_box(style="display:none")
|
2009-02-18 12:01:51 +01:00
|
|
|
|
|
|
|
- if flash[:notice]
|
|
|
|
= javascript_tag("new Effect.Highlight('flashNotice', {delay:0.8, duration:1});")
|
|
|
|
- if flash[:error]
|
2009-10-17 12:22:13 +02:00
|
|
|
= javascript_tag("new Effect.Highlight('flashError', {delay:0.8, duration:1});")
|