Sha256: 4a57ceb53fff161ff803ee2d6e127d4466d884197496b6f441a0d6539de375ea

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 KB

Contents

!!!
%head
  %link{:href => '/style.css', :rel => 'stylesheet', :type => 'text/css'}
  %link{:href => '/favicon.ico',:rel => 'shortcut icon'}
  %script{:type => 'text/javascript',:src => '/jquery.js'}
  %script{:type => 'text/javascript',:src => '/jquery.corners.js'}
  %script{:type => 'text/javascript'}
    :plain
      $(document).ready( function(){
        $('.commit').corners();
      });
  %title GINST
  
%body
  #container
    #header
      #logo
        %h1 GINST
        %h2 Git Integration System
    #left
      %ul
        - Ginst::Project.projects.each do |project|
          %li
            %a{:href => "/projects/#{project.name.slug}"}= project.name
            - if @project == project
              %ul
                - project.refs.each do |r|
                  %li
                    %a{:href => "/projects/#{project.name.slug}/refs/#{CGI::escape(r.name)}"}= r.name
        %li
          %a{:href=> "/projects/new"}New Project
    #mainContent
      =yield
    #footer
      %p== Ginst <span class='version'>(Ginst::VERSION)</span>     -- Powered by RGitHook <span class='version'>(RGitHook::VERSION)</span>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ginst-0.2.2 lib/app/views/layout.haml