Show More
Commit Description:
Merge pull request #15 from nattee/master...
Commit Description:
Merge pull request #15 from nattee/master
finalizing merge of nattee's master
References:
File last commit:
Show/Diff file:
Action:
app/views/layouts/application.html.erb
| 23 lines
| 452 B
| text/plain
| TextLexer
|
|
r318 | <!DOCTYPE html> | ||
<html> | ||||
|
r27 | <head> | ||
|
r320 | <title><%= GraderConfiguration['contest.name'] %></title> | ||
<%= stylesheet_link_tag "application", :media => "all" %> | ||||
|
r318 | <%= javascript_include_tag "application" %> | ||
<%= csrf_meta_tags %> | ||||
r412 | <%= content_for :header %> | |||
|
r320 | <%= yield :head %> | ||
r412 | ||||
|
r27 | </head> | ||
<body> | ||||
|
r320 | <div class="userbar"> | ||
<%= user_header %> | ||||
</div> | ||||
<%= content_tag(:p,flash[:notice],:style => "color:green") if flash[:notice]!=nil %> | ||||
|
r318 | <%= yield %> | ||
|
r27 | |||
</body> | ||||
</html> | ||||