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

Ajax

开发平台:

Others

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2.     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" lang="fr">
  4. <head profile="http://gmpg.org/xfn/11">
  5.   <title><%= h(page_title) %></title>
  6.   <%= stylesheet_link_tag "/stylesheets/theme/style", :media => 'all' %>
  7.   <%= page_header %>
  8. </head>
  9. <body>
  10.   <div id='container'>
  11.     <div id='logo'>
  12.     <% if controller.controller_name == 'articles' and controller.action_name.include? 'index' %>
  13.       <h1><%= link_to(this_blog.blog_name, this_blog.base_url) %></h1>
  14.     <% else %>
  15.       <p id='title'><%= link_to(this_blog.blog_name, this_blog.base_url) %></p>
  16.     <% end %>
  17.       <p><%= this_blog.blog_subtitle %></p>
  18.     </div>
  19.     <div id='page'>
  20.       <div id='content'>
  21.         <%= @content_for_layout %>
  22.       </div>
  23.       <div id='sidebar'>
  24.         <%= render_sidebars %>
  25.       </div>
  26.       <br class='clear' />
  27.       <div id='legal'>
  28.         <ul>
  29.           <%= content_tag(:li, link_to(_('Home'), this_blog.base_url, {:class => render_active_home}))%>
  30.           <%= content_tag(:li, link_to(_('Articles'), {:controller => 'categories'}, {:class => render_active_articles}))%>
  31.           <%= show_pages_links %>  
  32.           <li><a href="http://t37.net/">Th猫me Fr茅d茅ric de Villamil</a></li>
  33.         </ul>
  34.       </div>
  35.     </div>
  36.   <!-- Absolutely positionned -->
  37.   <ul id='menu'>
  38.     <%= content_tag(:li, link_to(_('Home'), this_blog.base_url, {:class => render_active_home}))%>
  39.     <%= content_tag(:li, link_to(_('Articles'), {:controller => 'categories'}, {:class => render_active_articles}))%>
  40.     <%= show_pages_links %>
  41.   </ul>  
  42.   <div id='external'>
  43.     <a href='<%= @auto_discover_rss %>'>
  44.       <%= image_tag "theme/rss.png", :alt => "RSS" %>
  45.     </a>  
  46.   </div>
  47.   <div id="breadcrumb">
  48.     <%= render_breadcrumb %>
  49.   </div>
  50. </body>
  51. </html>