Sha256: d4545e1aa66aa0e79ba9dd68cad269b93f256eef24fa366136e58a4a58a48e57

Contents?: true

Size: 637 Bytes

Versions: 1

Compression:

Stored size: 637 Bytes

Contents

!!!
%html.no-js
  %head
    %meta{:charset => "utf-8"}
    %title
      = t('admin.title')
      = yield(:title)
    = csrf_meta_tag
    = stylesheet_link_tag 'admin_fu/styles', :media => 'all'
  %body
    %header
      %h1= link_to t('admin.title'), admin_fu_root_path
    
    %nav{:role => 'mainmenu'}
      %ul
        - AdminFu.menu.each do |key, entry|
          %li
            = link_to t("admin.menu.#{key}"), evaluate_path(entry.path)
    
    %article{:role => 'content'}
      = render 'layouts/flash'
      = yield
          
    %footer
      %a{:href => '#'} Contact me
      
    = javascript_include_tag 'admin_fu/html5'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
admin_fu-0.1.0 app/views/layouts/admin_fu.html.haml