Show More
Commit Description:
merge bootstrap back to algo
Commit Description:
merge bootstrap back to algo
References:
File last commit:
Show/Diff file:
Action:
app/views/layouts/application.html.haml
| 15 lines
| 404 B
| text/x-haml
| HamlLexer
|
r552 | <!DOCTYPE html> | |||
%html | ||||
%head | ||||
%title= GraderConfiguration['contest.name'] | ||||
r557 | = stylesheet_link_tag "application", params[:controller], :media => "all" | |||
= javascript_include_tag "application", params[:controller] | ||||
r552 | = csrf_meta_tags | |||
= content_for :header | ||||
= yield :head | ||||
%body | ||||
r554 | = render 'layouts/header' | |||
r552 | ||||
r578 | = content_tag(:p,flash[:notice],class: 'alert alert-success') if flash[:notice]!=nil | |||
r553 | = yield | |||