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 |
Jittat Fakcharoenphol
boots into rails 3
r318 <!DOCTYPE html>
<html>
jittat
fixed layout problem, for real, using render :layout => ......
r27 <head>
Jittat Fakcharoenphol
renamed model Configuration to GraderConfiguration, renamed rhtml views to erb, fixed other small errors
r320 <title><%= GraderConfiguration['contest.name'] %></title>
<%= stylesheet_link_tag "application", :media => "all" %>
Jittat Fakcharoenphol
boots into rails 3
r318 <%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
(in progress) add date range
r412 <%= content_for :header %>
Jittat Fakcharoenphol
renamed model Configuration to GraderConfiguration, renamed rhtml views to erb, fixed other small errors
r320 <%= yield :head %>
(in progress) add date range
r412
jittat
fixed layout problem, for real, using render :layout => ......
r27 </head>
<body>
Jittat Fakcharoenphol
renamed model Configuration to GraderConfiguration, renamed rhtml views to erb, fixed other small errors
r320 <div class="userbar">
<%= user_header %>
</div>
<%= content_tag(:p,flash[:notice],:style => "color:green") if flash[:notice]!=nil %>
Jittat Fakcharoenphol
boots into rails 3
r318 <%= yield %>
jittat
fixed layout problem, for real, using render :layout => ......
r27
</body>
</html>