我正在尝试将应用程序布局保留在我的Rails 3应用程序中,以用于我最常使用的样式表和javascript文件(application.js,jquery,style等)。但是我在某些页面上使用了插件,并希望正确包含这些样式表/ javascripts。例如,我希望仅在我的主页上使用slides。如果我的应用程序布局如下所示,那么包含特定于页面的文件的最佳方法是什么?
<!doctype html>
<head>
<title>Title</title>
<link rel="stylesheet" href="http://localhost:3000/stylesheets/style.css" media="screen and (min-width:481px)">
<!--[if IE]>
<link rel="stylesheet" href="http://localhost:3000/stylesheets/style.css" media="all"><![endif]-->
<%= javascript_include_tag :defaults %>
<%= csrf_meta_tag %>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="user-scalable=no,width=device-width">
</head>
<body>
<%= render 'layouts/header' %>
<%= yield %>
<%= render 'layouts/footer' %>
</body>
</html>