summaryrefslogtreecommitdiff
path: root/app/views/layouts/_content.html.haml
blob: 19af627d5f3fb9bb46998fe9fa2ef922f815f27e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
-#
-# Partial for displaying the page content. This is the only place that content should be displayed.
-#

- if content_for?(:content)
  - content = yield(:content)
- else
  - content = yield

- if @show_navigation
  .span2
    = render 'layouts/navigation'
  .span10
    = render 'layouts/messages'
    = content
- else
  .span12
    = render 'layouts/messages'
    = content