seo.html.erb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:4k
源码类别:

Ajax

开发平台:

Others

  1. <% @page_heading = _('Search Engine Optimization') %>
  2. <% subtabs_for(:settings) %>
  3. <%= error_messages_for 'blog' %>
  4. <% form_tag :action => 'update' do %>
  5. <div class='ui-accordion ui-widget ui-helper-reset ui-accordion-icons settings'>
  6.   <h3 class='ui-accordion-header ui-helper-reset ui-state-default ui-corner-top'><span class='ui-icon ui-icon-gear'></span> <%= _("Search Engine Optimisation")%></h3>
  7.   <div class='ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content-active'>
  8.     <div class='setting'>
  9.       <label class="float"><%= _("Show blog name")%></label>
  10.       <div class='input_text'>
  11.         <%= radio_button(:setting, :title_prefix, 1)%>
  12.         <label for="setting_title_prefix_1"><%= _("At the beginning of page title")%></label><br />
  13.         <%= radio_button(:setting, :title_prefix, 2)%>
  14.         <label for="setting_title_prefix_2"><%= _("At the end of page title")%></label><br />
  15.         <%= radio_button(:setting, :title_prefix, 0)%>
  16.         <label for="setting_title_prefix_0"><%= _("Don't show blog name in page title")%></label>      
  17.       </div>
  18.     </div>
  19.     <div class='setting clear'>
  20.       <label class="float" for="setting_permalink_format"><%= _("Format of permalink")%></label>
  21.       <div class='input_text'>
  22.         <%= text_field(:setting, :permalink_format, { :class => 'medium'})%>
  23.       </div>      
  24.     </div>
  25.     <div class='setting clear'>
  26.       <label class="float" for="setting_google_analytics"><%= _("Google Analytics")%></label>
  27.       <div class='input_text'>
  28.         <%= text_field(:setting, :google_analytics, :class => 'medium')%>
  29.       </div>      
  30.     </div>
  31.     <div class='setting clear'>
  32.       <label class="float" for="setting_meta_description"><%= _("Meta description")%></label>
  33.       <div class='input_text'>
  34.         <%= text_area(:setting, :meta_description, :rows => 3, :class => 'medium')%>
  35.       </div>      
  36.     </div>
  37.     <div class='setting clear'>
  38.       <label class="float" for="setting_meta_keywords"><%= _("Meta keywords")%></label>
  39.       <div class='input_text'>
  40.         <%= text_area(:setting, :meta_keywords, :rows => 3, :class => 'medium')%>
  41.       </div>      
  42.     </div>
  43.     <div class='setting clear'>
  44.       <label class="float" for="setting_rss_description"><%= _("Use RSS description")%></label>
  45.       <div class='input_text'>
  46.         <%= check_box(:setting, :rss_description)%>
  47.         <span><%= "#{_('This will display')} <em>#{_('Original article writen by')} ... #{_('and published on')} <a href='#{this_blog.base_url}'>#{this_blog.blog_name}</a> | <a href='#{this_blog.base_url}'>#{_('direct link to this article')}</a> | #{_('If you are reading this article elsewhere than')} <a href='#{this_blog.base_url}'>#{this_blog.blog_name}</a>, #{_('it has been illegally reproduced and without proper authorization')}</em> #{_('at the bottom of each of your post in the RSS feed')}"%></span>
  48.       </div>      
  49.     </div>
  50.     <div class='setting clear'>
  51.       <label class="float" for="setting_index_categories"><%= _("Index categories")%></label>
  52.       <div class='input_text'>
  53.         <%= check_box(:setting, :index_categories)%>
  54.         <span><%= _("Unchecking this box will add <code>noindex, follow</code> meta tags in every category page, removing them from search engines and preventing duplicate content issues") %></span>
  55.       </div>      
  56.     </div>
  57.     <div class='setting clear'>
  58.       <label class="float" for="setting_index_tags"><%= _("Index tags")%></label>
  59.       <div class='input_text'>
  60.         <%= check_box(:setting, :index_tags)%>
  61.         <span><%= _("Unchecking this box will add <code>noindex, follow</code> meta tags in every tags page, removing them from search engines and preventing duplicate content issues") %></span>        
  62.       </div>      
  63.     </div>
  64.     <div class='setting clear'>
  65.       <label class="float" for="setting_robots"><%= _("Robots.txt")%></label>
  66.       <div class='input_text'>
  67.         <%= text_area(:setting, :robots, :rows => 10, :class => 'medium')%>
  68.       </div>      
  69.     </div>
  70.   </div>
  71.   <% unless robot_writable? -%>
  72.     <div class='mandatory'><small><%= _("You robots.txt file is not writeable. Typo won't be able to write it")%></small></div>
  73.   <% end -%>
  74. </div>
  75. <%= hidden_field_tag 'from', 'seo' %>  
  76. <%= render :partial => 'submit' %>
  77. <% end %>