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

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. <div id="container">
  10.   <div id="header">
  11.     <h1><span><%= link_to this_blog.blog_name, this_blog.base_url %></span></h1>
  12.     <h2><%= this_blog.blog_subtitle %></h2>
  13.   </div>
  14.   <div id="page">
  15.     <div id="content">
  16.       <%= @content_for_layout %>
  17.       <%= javascript_tag 'show_dates_as_local_time()' %>
  18.     </div>
  19.     <div id="sidebar">
  20.       <!-- sidebar components -->
  21.       <%= render_sidebars %>
  22.     </div>
  23.     <br style="clear:both;" />
  24.   </div>
  25.   <div id="footer">
  26.     <hr />
  27.     <p><%= link_to this_blog.blog_name, this_blog.base_url %></p>
  28.     <ul>
  29.       <li>
  30.         <%= _("Powered by %s", link_to('typo', 'http://typosphere.org')) %> /
  31.         <%= _("styled with %s", link_to('scribbish', 'http://quotedprintable.com/pages/scribbish'))%>
  32.       </li>
  33.     </ul>
  34.   </div>
  35. </div>
  36. </body>
  37. </html>