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

Ajax

开发平台:

Others

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4.   <%= page_header %>
  5.   <title><%=h page_title %></title>
  6.   <%= stylesheet_link_tag '/stylesheets/theme/application.css', :media => 'all' %>
  7. </head>
  8. <body>
  9.     <!-- start header -->
  10.     <div id="header">
  11.         <div id="logo">
  12.             <h1><%= link_to this_blog.blog_name, this_blog.base_url %></h1>
  13.             <h2><%= this_blog.blog_subtitle %></h2>
  14.         </div>
  15.         <div id="menu">
  16.             <ul>
  17.                 <li class="page_item <%= 'current_page_item' if (controller.controller_name == "articles" and controller.action_name == "index") %>">
  18.                     <%= link_to _("Home"), this_blog.base_url %>
  19.                 </li>
  20.                 <li class="page_item <%= 'current_page_item' if (controller.action_name != 'index' and controller.action_name != 'view_page') %>">
  21.                     <%= link_to _("Articles"), {:controller => "articles", :action => "archives"} if (controller.controller_name != "index" )%>
  22.                 </li>
  23.                 <li class="page_item <%= 'current_page_item' if (controller.controller_name == "articles" and controller.action_name == "view_page" and params[:name].to_s == 'about') %>">
  24.                     <%= link_to _("About"), this_blog.base_url + "/pages/about" %>
  25.                 </li>
  26.             </ul>
  27.         </div>
  28.     </div>
  29.     <!-- end header -->
  30.   <div id="page">
  31.     <div id="content">
  32.       <%= @content_for_layout %>
  33.       <%= javascript_tag 'show_dates_as_local_time()' %>
  34.     </div>
  35.     <div id="sidebar">
  36.       <!-- sidebar components -->
  37.       <%= render_sidebars %>
  38.     </div>
  39.     <br style="clear:both;" />
  40.   </div>
  41.   <div id="footer">
  42.         <div class="wrap">
  43.         <p id="legal">
  44.                 <%= _("Designed by %s ported to typo by %s ", link_to('NodeThirtyThree', 'http://www.nodethirtythree.com/'), 
  45.                 link_to("Fr茅d茅ric de Villamil", 'http://fredericdevillamil.com')) %> <br />
  46.                 <%= _("Powered by %s", link_to('typo', 'http://typosphere.org')) %>
  47.             </p>
  48.         </div>
  49.   </div>
  50. </body>
  51. </html>