Show More
Commit Description:
jquery work
Commit Description:
jquery work
References:
File last commit:
Show/Diff file:
Action:
app/views/layouts/application.html.haml
| 18 lines
| 450 B
| text/x-haml
| HamlLexer
|
r552 | <!DOCTYPE html> | |||
%html | ||||
%head | ||||
%title= GraderConfiguration['contest.name'] | ||||
r557 | = stylesheet_link_tag "application", params[:controller], :media => "all" | |||
r552 | = csrf_meta_tags | |||
r864 | = csp_meta_tag | |||
= javascript_importmap_tags | ||||
r552 | = content_for :header | |||
= yield :head | ||||
%body | ||||
r864 | - unless local_assigns[:skip_header] | |||
= render 'layouts/header' | ||||
r552 | ||||
r632 | /= content_tag(:p,flash[:notice],class: 'alert alert-success') if flash[:notice]!=nil | |||
= flash_messages | ||||
r553 | = yield | |||