aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/admin/blog/posts/_form.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/admin/blog/posts/_form.html.erb')
-rw-r--r--app/views/admin/blog/posts/_form.html.erb24
1 files changed, 23 insertions, 1 deletions
diff --git a/app/views/admin/blog/posts/_form.html.erb b/app/views/admin/blog/posts/_form.html.erb
index 3c0a351..9d0e0bd 100644
--- a/app/views/admin/blog/posts/_form.html.erb
+++ b/app/views/admin/blog/posts/_form.html.erb
@@ -46,10 +46,32 @@
</li>
<% end %>
</ul>
- <h3><%= t('admin.blog.posts.form.published_at') %></h3>
+ <h3><%= t('.published_at') %></h3>
<%= f.datetime_select :published_at %>
</div>
<div class='hemisquare right_side'>
+ <h2><%= t('.seo') %></h2>
+ <div class='field'>
+ <span class='label_with_help'>
+ <%= f.label :browser_title, t('.seo_override_title') %>
+ <%= refinery_help_tag t('.seo_override_title_help')%>
+ </span>
+ <%= f.text_field :browser_title, :class => 'widest' %>
+ </div>
+ <div class='field'>
+ <span class='label_with_help'>
+ <%= f.label :meta_keywords, t('.meta_keywords_title') %>
+ <%= refinery_help_tag t('.meta_keywords_help') %>
+ </span>
+ <%= f.text_field :meta_keywords, :class => 'widest' %>
+ </div>
+ <div class='field'>
+ <span class='label_with_help'>
+ <%= f.label :meta_description, t('.meta_description_title') %>
+ <%= refinery_help_tag t('.meta_description_help') %>
+ </span>
+ <%= f.text_area :meta_description, :class => 'widest', :rows => 7 %>
+ </div>
</div>
</div>
<%= render :partial => "/shared/admin/form_actions",