Sha256: 32b97629705199891f9caea31b29569a710bdadfd54607c9129b20607aa9f98d

Contents?: true

Size: 390 Bytes

Versions: 8

Compression:

Stored size: 390 Bytes

Contents

%h3 Wiki Sitemap (Two levels)

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

      %ul.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


Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
tawork-0.0.11 app/views/wiki/pages/index.html.haml
tawork-0.0.10 app/views/wiki/pages/index.html.haml
tawork-0.0.9 app/views/wiki/pages/index.html.haml
tawork-0.0.8 app/views/wiki/pages/index.html.haml
tawork-0.0.7 app/views/wiki/pages/index.html.haml
tawork-0.0.6 app/views/wiki/pages/index.html.haml
tawork-0.0.5 app/views/wiki/pages/index.html.haml
tawork-0.0.4 app/views/wiki/pages/index.html.haml