{% assign collection_name = include.collection_name %} {% assign nav_title = include.nav_title %} {% assign nav_title_link = include.nav_title_link %} {% assign categories = "" | split: "|" %} {% assign tags = "" | split: "|" %} {% for doc in include.collection %} {% for category in doc.categories %} {% assign categories = categories | push: category | uniq %} {% endfor %} {% for tag in doc.tags %} {% assign tags = tags | push: tag | uniq %} {% endfor %} {% endfor %} {% assign docs_grouped = include.collection | group_by: "category" %}
{% include collection_browser/_search.html tags=tags collection_name=include.collection_name %}
{% assign data_scroll_after_selector = '.cb-search-cmp' %} {% assign data_scroll_until_selector = '.cb-doc-listing' %} {% include collection_browser/_sidebar.html data_scroll_until_selector=data_scroll_until_selector data_scroll_after_selector=data_scroll_after_selector %} {% include collection_browser/_docs-list.html categories=categories collection_name=include.collection_name docs_grouped=docs_grouped %}
{% include collection_browser/_no-search-results.html %}
{% include collection_browser/_cta-section.html %}