{{!--
    Renders a summary of this services, containing references to all operations and paths
    @todo params
    @api public
--}}

            <aside id="sidebar">
                <nav>
                    <ul>
                        <li><a href="#overview">Overview</a></li>
                    </ul>
                    {{#if securitySchemes}}
                    <ul>
                        <li><a href="#auth">Authentication</a></li>
                    </ul>
                    {{/if}}
                    <ul id="endpoints-list">
                        <li class="title"><a href="#endpoints">Endpoints</a></li>
                        {{#eachSorted groups}}
                            <li class="expandable">
                                <div class="endpoint"><a href="#group-{{htmlId name}}">{{capitalize name}}</a></div>
                                {{#if operations}}
                                    <section style="display: none">
                                        <ul>
                                            {{#eachSorted operations}}
                                                <li>
                                                    <div><a href="#operation-{{htmlId httpMethod}}-{{htmlId fullPath}}"><span class="method operation-{{lowerCase httpMethod}}">{{httpMethod}}</span>&nbsp;{{#ifeq @root.operations.navStyle 'full-path'}}{{fullPath}}{{else}}{{name}}{{/ifeq}}</a></div>
                                                </li>
                                            {{/eachSorted}}
                                        </ul>
                                    </section>
                                {{/if}}
                            </li>
                        {{/eachSorted}}
                    </ul>
                    <ul>
                        <li><a href="#schemas">Schemas</a></li>
                    </ul>
                </nav>
            </aside>
