0

我正在使用 Bootstrap 和 rails,在我的布局文件夹中有我的_navigation文件。我正在尝试创建一个没有任何导航的“主页”。

:layout=>false

不包括任何 CSS 或任何布局 - 只是内容。我需要样式来显示...

有没有办法渲染但忽略_navigation文件的包含?

4

1 回答 1

0

弄清楚了。我创建了一个空白布局。

:render= layout=>'blank'

我的空白布局看起来像这样(我删除了布局代码)

!!!
%html
  %head
    %meta{:content => "width=device-width, initial-scale=1.0", :name => "viewport"}
      %title= content_for?(:title) ? yield(:title) : "App"
      %meta{:content => content_for?(:description) ? yield(:description) : "App", :name => "description"}
        = stylesheet_link_tag "application", :media => "all"
        = javascript_include_tag "application"
        = csrf_meta_tags
        = yield(:head)
  %body{:class => "#{controller_name} #{action_name}",:style=>"padding-top:0px"}
    #main{:role => "main"}
      .container
        .content
          .row
            .span12
              = render 'layouts/messages'
              = yield
          %footer
      / ! end of .container
    / ! end of #main

另请注意,我将主体修改padding-top为 0px(覆盖引导值)

于 2013-06-22T17:19:43.553 回答