blob: c1a56f21136e122a4cbb7b1c883a479ddc5f3315 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
!!! 5
<!--[if lt IE 7]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7]> <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8]> <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if gt IE 8]><!-->
%html.no-js{ :lang => "en" }
~#OPTIMIZE Make html lang attribute reflect the actual language.
<!--<![endif]-->
%header
%meta{ :charset => "utf-8" }/
~#OPTIMIZE "/" seems to be supposed to make an empty element tag, but it doesn't work. HAML bug?
%title
= content_for?(:title) ? yield(:title) : "Untitled"
%meta{ :name => "viewport", :content => "width=device-width, initial-scale=1.0" }/
= stylesheet_link_tag "application"
= javascript_include_tag "application"
= csrf_meta_tag
= yield(:head)
%body
#container
= render :partial => "shared/header"
= render :partial => "shared/flash", :locals => { :flash => flash}
#content{:role => 'main'}
.light
%header.main
.breadcrumbs= render_breadcrumbs :separator => ' » '
- if show_title?
%h1= yield(:title)
= yield
%footer#main
%ul
%li
%a{:href => "http://amooma.de/gemeinschaft/gs5"} Gemeinschaft #{GsParameter.get('GEMEINSCHAFT_VERSION')}
- if GuiFunction.display?('amooma_commercial_support_link_in_footer', current_user)
%li
%a{:href => "http://amooma.de"} Kommerzieller Support und Consulting
- if GuiFunction.display?('gemeinschaft_mailinglist_link_in_footer', current_user)
%li
%a{:href => "https://groups.google.com/group/gs5-users/"} Kostenlose Mailingliste
.amooma-logo
%span brought to you by
%a{ :target => '_blank', :href => "http://amooma.de/" } Amooma
|