| {# |
| Copyright 2016 The Bazel Authors. All rights reserved. |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| #} |
| <nav class="toc"> |
| % if ruleset.description: |
| <h2><a href="#overview">Overview</a></h2> |
| % endif |
| % if ruleset.repository_rules[0] is defined: |
| <h2>Repository Rules</h2> |
| <ul> |
| % for rule in ruleset.repository_rules: |
| <li><a href="#{{ rule.name }}">{{ rule.name }}</a></li> |
| % endfor |
| </ul> |
| % endif |
| % if ruleset.rules[0] is defined: |
| <h2>Rules</h2> |
| <ul> |
| % for rule in ruleset.rules: |
| <li><a href="#{{ rule.name }}">{{ rule.name }}</a></li> |
| % endfor |
| </ul> |
| % endif |
| % if ruleset.macros[0] is defined: |
| <h2>Macros</h2> |
| <ul> |
| % for macro in ruleset.macros: |
| <li><a href="#{{ macro.name }}">{{ macro.name }}</a></li> |
| % endfor |
| </ul> |
| % endif |
| </nav> |