Sha256: 4bed54eff595341750630025d68b49b6a36bfbfb71fb0a59f4cb0445c66c114c

Contents?: true

Size: 1.45 KB

Versions: 5

Compression:

Stored size: 1.45 KB

Contents

!!!
%html
  %head
    != css :foundation, :media => 'screen'
    != css :morris, :media => 'screen'
    %meta{:charset => "utf-8"}
    %meta{:name => "viewport", :content => "width=device-width, initial-scale=1.0"}
    %title Dashboard
    %link{:href => "/images/favicon.ico", :rel => "shortcut icon"}
  %body
    .off-canvas-wrap{:data => {'offcanvas' => true}}
      .inner-wrap
        -# Mobile and Desktop devices
        %nav.tab-bar
          %section
            %a.left-off-canvas-toggle.menu-icon
              %span
          %section.middle.tab-bar-section
            %h1.title
              %a{:href => '/',:style => "color:white"} Dashboard
    
        %aside.left-off-canvas-menu
          %ul.off-canvas-list
            %li
              %a{:href => '/'}Home
            %li 
              %label Bugzilla
            - @products.each do |product|
              %li
                %a{:href => "/#{product.gsub(/ /,'_')}/bugzilla"} #{product}
            %li
              %label GitHub
            - @github_repos.each do |repo|
              %li
                %a{:href => "/github/#{repo}"} #{repo}

        %a.exit-off-canvas
        = yield
    :javascript
      $(document).ready(function(){
        var timer;

        $(window).resize(function() {
            clearTimeout(timer);
            timer = setTimeout(function() {
                $('.inner-wrap').css("min-height", $(window).height() + "px" );
            }, 40);
        }).resize();
      });

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
nailed-0.0.7 views/layout.haml
nailed-0.0.6 views/layout.haml
nailed-0.0.5 views/layout.haml
nailed-0.0.4 views/layout.haml
nailed-0.0.3 views/layout.haml