Sha256: 285883015fbf662c155dd02e6deb27672dc44f1fdfaa4d3e09cb183e16feeea0

Contents?: true

Size: 1.61 KB

Versions: 3

Compression:

Stored size: 1.61 KB

Contents

%home
  = link_to "Home", "index"

%h3 All libraries

%table.table-hover.col-sm-12
  - libraries.each do |library|
    %tr 
      %td.name
        - if library.latest_manifest.display_name
          = link_to_library(library.latest_manifest.name, library.latest_manifest.display_name)
        - else
          = link_to_library(library.latest_manifest.name, library.latest_manifest.name)
      %td.summary
        = library.manifests.last.summary      
      %td.platforms
        - if library.manifests.last.platforms.include? 'Linux'
          %i.fa.fa-linux
        - if library.manifests.last.platforms.include? 'OS X'
          %i.fa.fa-apple
        - if library.manifests.last.platforms.include? 'Windows'
          %i.fa.fa-windows
        - if library.manifests.last.platforms.include? 'Android'
          %i.fa.fa-android
        - if library.manifests.last.platforms.include? 'iOS'
          %img{:src => "ios.ico", :height => "15%;"}
      %td.topics
        - if library.manifests.last.topics
          - library.manifests.last.topics.each do |topic|
            - if (topic != library.manifests.last.topics.last)
              = topic + ", "
            - else 
              = topic                    
      %td.licenses
        - library.manifests.last.licenses.each do |license|
          - if (license != library.manifests.last.licenses.last)
            = license + ", "
          - else 
            = license
            
:javascript
  $('table.table-hover.col-sm-12 tr').click( function() {
    window.location = $(this).find('a').attr('href');
  }).hover( function() {
    $(this).toggleClass('hover');
  });
             

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
inqlude-0.11.0 view/two-column/all.html.haml
inqlude-0.10.0 view/two-column/all.html.haml
inqlude-0.9.0 view/two-column/all.html.haml