blob: 8e0bfbc61a7e826e1af9da215d267e809b7848af (
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 (except for home layout)
-#
- if content_for?(:content)
- content = yield(:content)
- else
- content = yield
- if @show_navigation && @user
.col-md-2
= render 'layouts/navigation'
.col-md-10
= render 'layouts/messages'
= content
- else
.col-md-12
= render 'layouts/messages'
= content
|