62 lines
970 B
Plaintext
62 lines
970 B
Plaintext
!!!
|
|
|
|
%html{:lang => "fr"}
|
|
%head
|
|
%meta{:"http-equiv" => "content-type" ,:content =>"text/html;charset=UTF-8" }
|
|
%title
|
|
Espace d'Administration
|
|
|
|
=javascript_include_tag "admin"
|
|
=stylesheet_link_tag "admin"
|
|
<script src="/ace_editor/ace-uncompressed-noconflict.js" type="text/javascript" charset="utf-8"></script>
|
|
= csrf_meta_tag
|
|
|
|
|
|
=javascript_include_tag "http://maps.google.com/maps/api/js?sensor=false®ion=FR"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%body
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#breadcrumb
|
|
=link_to "Dashboard", "/admin"
|
|
=link_to "Se déconnecter", destroy_admin_session_path, :class => "logout_link"
|
|
|
|
|
|
|
|
|
|
.page_slide#main_slide
|
|
.page_slide_content
|
|
.container_12
|
|
|
|
= yield
|
|
.clear
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#flash
|
|
|
|
-if flash[:alert] or (@flash_i and @flash_i[:alert])
|
|
.message.closeable.alert
|
|
= flash[:alert]
|
|
= @flash_i[:alert] if @flash_i and @flash_i[:alert]
|
|
-if flash[:notice]
|
|
.message.closeable.notice
|
|
= flash[:notice]
|
|
|
|
|