Sha256: fd0fa31030cbad7eaebc06af0c1ecf5c475258a84eb0883ffa51eaad8b20cea1

Contents?: true

Size: 1.16 KB

Versions: 7

Compression:

Stored size: 1.16 KB

Contents

!!! 5
%html
  %head
    %title Wally
    %link{:rel => 'stylesheet', :type => 'text/css', :href => '/bootstrap.min.css'}
    %link{:rel => 'stylesheet', :type => 'text/css', :href => '/skin.css'}
    %meta{:'http-equiv' => 'X-UA-Compatible', :content => 'IE=edge,chrome=1'}
    %meta{:name => 'viewport', :content => 'width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;'}
  %body
    %div.container-fluid
      %div.logo
        %h1
          %a{:href => "/"} Wally
      %div.search-bar
        %form{:method => "GET", :action => "/search", :id => "search"}
          %input{:type => "text", :id => "q", :name => "q", :placeholder => 'text, @tags etc.', :value => @q }
          %input.btn{:type => "submit", :id => "search", :value => "Search"}
    %div.container-fluid
      %div.sidebar
        %h2
          Features
        %ul
          - @features.each do |feature|
            %li
              %a{:href => "/features/#{feature["id"]}"}
                = feature["name"]
              - if feature["tags"]
                - feature["tags"].each do |tag|
                  %span.label.notice
                    = tag["name"]
      %div.content
        = yield

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
wally-0.0.13 lib/wally/views/layout.haml
wally-0.0.12 lib/wally/views/layout.haml
wally-0.0.11 lib/wally/views/layout.haml
wally-0.0.10 lib/wally/views/layout.haml
wally-0.0.9 lib/wally/views/layout.haml
wally-0.0.8 lib/wally/views/layout.haml
wally-0.0.7 lib/wally/views/layout.haml