Sha256: 7c8fb819d456d0c8251a96ac2c5bfd793ea1f45894cfaf43dcfe4db3a39e1554

Contents?: true

Size: 1.61 KB

Versions: 4

Compression:

Stored size: 1.61 KB

Contents

!!!
%html
  %head
    %title #{yield(: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

4 entries across 4 versions & 1 rubygems

Version Path
tawork-0.0.36 app/views/layouts/application.html.haml
tawork-0.0.35 app/views/layouts/application.html.haml
tawork-0.0.34 app/views/layouts/application.html.haml
tawork-0.0.33 app/views/layouts/application.html.haml