default.html.erb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:2k
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <%= page_header %>
- <title><%=h page_title %></title>
- <%= stylesheet_link_tag '/stylesheets/theme/application.css', :media => 'all' %>
- </head>
- <body>
- <!-- start header -->
- <div id="header">
- <div id="logo">
- <h1><%= link_to this_blog.blog_name, this_blog.base_url %></h1>
- <h2><%= this_blog.blog_subtitle %></h2>
- </div>
- <div id="menu">
- <ul>
- <li class="page_item <%= 'current_page_item' if (controller.controller_name == "articles" and controller.action_name == "index") %>">
- <%= link_to _("Home"), this_blog.base_url %>
- </li>
- <li class="page_item <%= 'current_page_item' if (controller.action_name != 'index' and controller.action_name != 'view_page') %>">
- <%= link_to _("Articles"), {:controller => "articles", :action => "archives"} if (controller.controller_name != "index" )%>
- </li>
- <li class="page_item <%= 'current_page_item' if (controller.controller_name == "articles" and controller.action_name == "view_page" and params[:name].to_s == 'about') %>">
- <%= link_to _("About"), this_blog.base_url + "/pages/about" %>
- </li>
- </ul>
- </div>
- </div>
- <!-- end header -->
- <div id="page">
- <div id="content">
- <%= @content_for_layout %>
- <%= javascript_tag 'show_dates_as_local_time()' %>
- </div>
- <div id="sidebar">
- <!-- sidebar components -->
- <%= render_sidebars %>
- </div>
- <br style="clear:both;" />
- </div>
- <div id="footer">
- <div class="wrap">
- <p id="legal">
- <%= _("Designed by %s ported to typo by %s ", link_to('NodeThirtyThree', 'http://www.nodethirtythree.com/'),
- link_to("Fr茅d茅ric de Villamil", 'http://fredericdevillamil.com')) %> <br />
- <%= _("Powered by %s", link_to('typo', 'http://typosphere.org')) %>
- </p>
- </div>
- </div>
- </body>
- </html>