Sha256: 0ab26fc5e9f60d57ff6a91462b55eaccec78acc6f795febb5b128ac3e6edae27

Contents?: true

Size: 1.59 KB

Versions: 7

Compression:

Stored size: 1.59 KB

Contents

!!!
%html
  %head
    %title tawork
    %meta{content: "width=device-width, initial-scale=1.0", name: "viewport"}/

    = stylesheet_link_tag    "application", media: "all"
    = javascript_include_tag "application"
    = csrf_meta_tags
    %link{href: '//fonts.googleapis.com/css?family=Bitter:400,700,400italic', rel: 'stylesheet', type:'text/css'}/
    %link{href: "//fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic", rel: "stylesheet", type: "text/css"}/
    %link{href: "//fonts.googleapis.com/css?family=Ubuntu", rel: "stylesheet", type: "text/css"}/
    %link{href: "//fonts.googleapis.com/css?family=Roboto:400,300italic,300,400italic,500", rel: "stylesheet", type: "text/css"}/


  %body
    = render 'layouts/nav_header'

    .container-fluid
      .row
        .col-md-9.col-md-offset-3 
          - if notice.present?
            .alert.alert-success= notice
          - if alert.present?
            .alert.alert-error= alert
                  
    .container-fluid
      .row
        .col-md-3.sidebar
          - if current_user.present?
            = render 'layouts/spaces'

            - if TAWORK_CONFIG["show_projects"].nil? || TAWORK_CONFIG["show_projects"]
              %ul.nav.nav-list.nav-list-panel
                %li.nav-header 
                  Projects
                - Project.all.each do |project|
                  %li 
                    = link_to project.title, project_path(project)
                %li
                  = link_to new_project_path do 
                    %i.fa.fa-plus
        .col-md-9.col-md-offset-3 
          = yield

    #global-autocomplete-results

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
tawork-0.0.31 app/views/layouts/application.html.haml
tawork-0.0.30 app/views/layouts/application.html.haml
tawork-0.0.29 app/views/layouts/application.html.haml
tawork-0.0.28 app/views/layouts/application.html.haml
tawork-0.0.27 app/views/layouts/application.html.haml
tawork-0.0.26 app/views/layouts/application.html.haml
tawork-0.0.25 app/views/layouts/application.html.haml