forked from jenkinsci/design-library-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidepanel.jelly
More file actions
19 lines (15 loc) · 773 Bytes
/
sidepanel.jelly
File metadata and controls
19 lines (15 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:l="/lib/layout" xmlns:st="jelly:stapler">
<l:app-bar title="Design Library" />
<l:tasks>
<l:search-bar id="design-library-search-bar" />
<l:task title="${%Home}" href="${rootURL}/design-library" icon="symbol-design-library plugin-design-library" contextMenu="false" />
<j:forEach var="s" items="${it.grouped.entrySet()}">
<div class="jenkins-side-nav__heading">${s.key.displayName}</div>
<j:forEach var="s" items="${s.value}">
<l:task title="${s.displayName}" href="${rootURL}/design-library/${s.urlName}" icon="${s.iconFileName}" />
</j:forEach>
</j:forEach>
</l:tasks>
<st:adjunct includes="io.jenkins.plugins.designlibrary.search" />
</j:jelly>