Show More
Commit Description:
added codejom controller, show status in public
Commit Description:
added codejom controller, show status in public
References:
File last commit:
Show/Diff file:
Action:
app/views/layouts/application.html.erb
| 22 lines
| 608 B
| text/plain
| TextLexer
|
|
r27 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | ||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | ||||
<head> | ||||
<meta http-equiv="content-type" content="text/html;charset=UTF-8" /> | ||||
|
r142 | <title><%= Configuration['contest.name'] %></title> | ||
|
r27 | <%= stylesheet_link_tag 'application' %> | ||
<%= yield :head %> | ||||
</head> | ||||
<body> | ||||
<div class="userbar"> | ||||
<%= user_header %> | ||||
</div> | ||||
|
r222 | <% if flash[:notice]!=nil %><div class="notice-bar"><span class="notice"><%= flash[:notice] %></span></div><% end %> | ||
|
r27 | |||
<%= yield %> | ||||
</body> | ||||
</html> | ||||