我在网站的每一页上都制作了一个头版和曲线。 我愿在签署网页上抹去(造成多个标志的景象较差)。
页: 1
<%= provide(:title, Sign up ) %>
<h1>Sign up</h1>
<div class="row">
<div class="span6 offset3">
<%= form_for(@user) do |f| %>
<%= f.label :name %>
<%= f.text_field :name %>
<%= f.label :email %>
<%= f.text_field :email %>
<%= f.label :password %>
<%= f.password_field :password %>
<%= f.label :password_confirmation, "Confirmation" %>
<%= f.password_field :password_confirmation %>
<%= f.submit "Create my account", class: "btn btn-large btn-primary" %>
<% end %>
</div>
</div>
这里还有我的/app/views/layouts/applications.html.erb<>。
<!DOCTYPE html>
<html>
<head>
<title><%= full_title(yield(:title)) %></title>
<%= stylesheet_link_tag "application", media: "all" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
<%= render layouts/shim %>
</head>
<body>
<%= render layouts/header %>
<div class="container">
<%= yield %>
<%= render layouts/footer %>
<%= debug(params) if Rails.env.development? %>
</div>
</body>
</html>
<代码><%=提供布局/负责人%>称,我喜欢在我签字页上被忽略。
I m并不确定是否需要<% 和gt;
statement place in the application.html.erb file,或者如果我能在某种程度上忽视新档案的负责人的话。