<%= f.field_container :title do %>
<%= f.label :title, t(:title) %> *
<%= f.text_field :title, :class => 'fullwidth title' %>
<%= f.error_message_on :title %>
<% end %>
<%= f.field_container :slug do %>
<%= f.label :slug, t(:slug) %> *
<%= f.text_field :slug, :class => 'fullwidth title' %>
<%= f.error_message_on :slug %>
<% end %>
<%= f.field_container :body do %>
<%= f.label :body, t(:body) %>
<%= f.text_area :body, {:class => 'fullwidth'} %>
<%= f.error_message_on :body %>
<% end %>
<%= f.field_container :meta_title do %>
<%= f.label :meta_title, t(:meta_title) %>
<%= f.text_field :meta_title, :class => 'fullwidth title' %>
<%= f.error_message_on :meta_title %>
<% end %>
<%= f.field_container :meta_keywords do %>
<%= f.label :meta_keywords, t(:meta_keywords) %>
<%= f.text_field :meta_keywords, :class => 'fullwidth title' %>
<%= f.error_message_on :meta_keywords %>
<% end %>
<%= f.field_container :meta_description do %>
<%= f.label :meta_description, t(:meta_description) %>
<%= f.text_field :meta_description, :class => 'fullwidth title' %>
<%= f.error_message_on :meta_description %>
<% end %>
<%= f.field_container :layout do %>
<%= f.label :layout, t(:layout) %>
<%= f.text_field :layout, :class => 'fullwidth title' %>
<% end %>
<%= f.field_container :foreign_link do %>
<%= f.label :foreign_link, t(:foreign_link) %>
<%= f.text_field :foreign_link, :class => 'fullwidth title' %>
<% end %>
<%= f.field_container :position do %>
<%= f.label :position, t(:position) %>
<%= f.number_field :position, :min => 0 %>
<% end %>
-
<%= f.check_box :show_in_sidebar %>
<%= f.label :show_in_sidebar %>
-
<%= f.check_box :show_in_header %>
<%= f.label :show_in_header %>
-
<%= f.check_box :show_in_footer %>
<%= f.label :show_in_footer %>
-
<%= f.check_box :visible %>
<%= f.label :visible %>