Show More
Commit Description:
(in progress) add date range
Commit Description:
(in progress) add date range
References:
File last commit:
Show/Diff file:
Action:
app/views/layouts/application.html.erb | 23 lines | 452 B | text/plain | TextLexer |
<!DOCTYPE html>
<html>
<head>
<title><%= GraderConfiguration['contest.name'] %></title>
<%= stylesheet_link_tag "application", :media => "all" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
<%= content_for :header %>
<%= yield :head %>
</head>
<body>
<div class="userbar">
<%= user_header %>
</div>
<%= content_tag(:p,flash[:notice],:style => "color:green") if flash[:notice]!=nil %>
<%= yield %>
</body>
</html>