Skip to content

Instantly share code, notes, and snippets.

@ihower
Created August 19, 2010 04:39
Show Gist options
  • Save ihower/537056 to your computer and use it in GitHub Desktop.
Save ihower/537056 to your computer and use it in GitHub Desktop.
<!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" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Forum</title>
<%= stylesheet_link_tag "base", "style" %>
<%= javascript_include_tag :defaults %>
<%= csrf_meta_tag %>
</head>
<body>
<div id="container">
<div id="header">
<h1><a href="/">Forum</a></h1>
<div id="user-navigation">
<ul class="wat-cf">
<% if current_user %>
<li><%= link_to('登出', destroy_user_session_path) %></li>
<li><%= link_to('修改密碼', edit_registration_path(:user)) %></li>
<% else %>
<li><%= link_to('註冊', new_registration_path(:user)) %></li>
<li><%= link_to('登入', new_session_path(:user)) %></li>
<% end %>
</ul>
</div>
<div id="main-navigation">
<ul class="wat-cf">
<li><%= link_to "Events", events_path %></li>
<li><%= link_to "People", people_path %></li>
</ul>
</div>
</div>
<div id="wrapper" class="wat-cf">
<div class="flash">
<% flash.each do |type, message| -%>
<div class="message <%= type %>">
<p><%= message %></p>
</div>
<% end -%>
</div>
<div id="main">
<%= yield %>
<div id="footer">
<div class="block">
<p>Copyright &copy; <%= Time.now.year %> Forum.</p>
</div>
</div>
</div>
<div id="sidebar">
<%= yield :sidebar %>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment