forked from cloudify-cosmo/getcloudify.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoc.html
More file actions
33 lines (31 loc) · 1.23 KB
/
toc.html
File metadata and controls
33 lines (31 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
layout: nil
title: toc
category: toc
publish: false
abstract: toc
pageord: 1
---
<div class="leftContentBox">
{% capture currentVersion %}{{ page.url | remove: "/guide/" | split:"/" | first }}{% endcapture %}
<h2 class="widgetheading">Cloudify {{currentVersion}}</h2>
<div class="clear"></div>
<div id="sidebar" class="list-group docMenu">
{% for curPage in site.page_categories["none"] %}
{% if curPage.url contains currentVersion %}
<a class="list-group-item" href="{{curPage.url}}" title="{{curPage.title}}">{{curPage.title}}</a>
{% endif %}
{% endfor %}
{% for category in site.categories_3 %}
<!--<h5 class="widgetheading">{{ category }}</h5>-->
<a href="#{{ category | replace:' ','_' }}" class="list-group-item titleHolder" data-parent="#sidebar"><i class="icon-caret-right"></i>{{ category }}</a>
<div id="{{ category | replace:' ','_' }}" class="list-group subitem none" class="list-group-item">
{% for curPage in site.page_categories[category] %}
{% if curPage.url contains currentVersion %}
<a class="list-group-item" href="{{curPage.url}}" title="{{curPage.title}}">{{curPage.title}}</a>
{% endif %}
{% endfor %}
</div>
{% endfor %}
</div>
</div>