Sha256: 6e62076b97735f0f06606ba42a7856ac254e7541ef6857f9b455f52b995db787

Contents?: true

Size: 728 Bytes

Versions: 18

Compression:

Stored size: 728 Bytes

Contents

.col-md-9
  %h3 Wiki Sitemap (Two levels)

  = link_to "New Space", new_wiki_space_path, class: "btn btn-primary"

  %ul.nav.nav-list
    - @roots.each do |node|
      %li
        = link_to node.title, wiki_page_path(node), class: "space-link"

        %ul.list-unstyled.nav-list-sub
          - node.children.each do |child|
            %li
              = link_to wiki_page_path(child) do
                = child.title
                - if child.has_children?
                  %i.fa.fa-arrow-circle-right

.col-md-3
  %h3 Starred Pages
  %ul.list-unstyled
    - Starred.where(user: current_user, starrable_type: 'Page').each do |starred|
      %li
        = link_to starred.starrable.title, wiki_page_path(starred.starrable)

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
tawork-0.0.31 app/views/wiki/pages/index.html.haml
tawork-0.0.30 app/views/wiki/pages/index.html.haml
tawork-0.0.29 app/views/wiki/pages/index.html.haml
tawork-0.0.28 app/views/wiki/pages/index.html.haml
tawork-0.0.27 app/views/wiki/pages/index.html.haml
tawork-0.0.26 app/views/wiki/pages/index.html.haml
tawork-0.0.25 app/views/wiki/pages/index.html.haml
tawork-0.0.24 app/views/wiki/pages/index.html.haml
tawork-0.0.23 app/views/wiki/pages/index.html.haml
tawork-0.0.22 app/views/wiki/pages/index.html.haml
tawork-0.0.21 app/views/wiki/pages/index.html.haml
tawork-0.0.20 app/views/wiki/pages/index.html.haml
tawork-0.0.19 app/views/wiki/pages/index.html.haml
tawork-0.0.18 app/views/wiki/pages/index.html.haml
tawork-0.0.17 app/views/wiki/pages/index.html.haml
tawork-0.0.16 app/views/wiki/pages/index.html.haml
tawork-0.0.15 app/views/wiki/pages/index.html.haml
tawork-0.0.14 app/views/wiki/pages/index.html.haml