<%= form_for(@page) do |f| %>
<% if @page.errors.any? %>

<%= pluralize(@page.errors.count, "error") %> prohibited this page from being saved:

<% end %>
  1. <%= f.label :Location %>
    <%= f.text_field :name %>
  2. <%= f.label :title %>
    <%= f.text_field :page_title %>

    this will appear in title

  3. <%= f.label :meta_keywords %>
    <%= f.text_area :meta_keywords, :class => 'small' %>
  4. <%= f.label :meta_description %>
    <%= f.text_area :meta_description, :class => 'small' %>
  5. <%= f.label :content %>
    <%= f.text_area :content %>

  6. <%= f.submit %>
<% end %>