Sha256: 2eea2f0357a56f1805e723e725f8c76da1ea0ccb180dbd80c33aa56dfc96e125

Contents?: true

Size: 1.18 KB

Versions: 5

Compression:

Stored size: 1.18 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"}/


  %body
    = render 'layouts/nav_header'

    .container
      - if notice.present?
        .alert.alert-success= notice
      - if alert.present?
        .alert.alert-error= alert
                  
    .container
      .row
        .col-md-3
          = 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
          = yield

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
tawork-0.0.8 app/views/layouts/application.html.haml
tawork-0.0.7 app/views/layouts/application.html.haml
tawork-0.0.6 app/views/layouts/application.html.haml
tawork-0.0.5 app/views/layouts/application.html.haml
tawork-0.0.4 app/views/layouts/application.html.haml