Warning, /epic-prod/docs/_includes/layouts/autodrop_data.md is written in an unsupported language. File is not indexed.
0001 {% case include.what %}
0002
0003 {% when "documentation" %}{% assign theCollection=site.documentation %}{% assign icon=site.documentation_icon %}
0004 {% when "campaigns" %}{% assign theCollection=site.campaigns %}{% assign icon=site.documentation_icon %}
0005 {% when "about" %}{% assign theCollection=site.about %}{% assign icon=site.about_icon %}
0006
0007 {% endcase %}
0008
0009 {% assign the_menu = site.data.menus | where: "name", include.what | first %}
0010
0011 <li class="nav-item dropdown px-2">
0012 {% if icon.size > 0 %}
0013 <a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" style="color: #fff;">{{ the_menu.full }} <img src="{{ icon | relative_url }}" height="16" width="16"></a>
0014 {% else %}
0015 <a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" style="color: #fff;">{{ the_menu.full }}</a>
0016 {% endif %}
0017
0018 <div class="dropdown-menu" aria-labelledby="navbarDropdown">
0019
0020 {% for submenu in the_menu.submenus %}
0021 {% if submenu.exclude %}{% continue %}{% endif %}
0022
0023 {% if submenu.div %}<div class="dropdown-divider"></div>{% endif %}
0024
0025 {% if submenu.label %}<div class="dropdown-item" style="color: #fff; background-color: #888;">{{ submenu.full }}</div>{% continue %}{% endif %}
0026
0027
0028 {% if submenu.link %}
0029 {% assign theLink=submenu.link %}
0030 <a class="dropdown-item" href="{{ theLink }}" {{ site.blank }}>{{ submenu.full }} <img src="{{ site.external_icon | relative_url }}" height="12" width="12"></a>
0031 {% else %}
0032
0033 {% assign item=theCollection | where: "name", submenu.name | first %}
0034 {% assign theLink=item.url | relative_url %}
0035
0036 {% assign experiment=theCollection | where: "name", submenu.name | map: "url" | first | relative_url %}
0037 <a class="dropdown-item" href="{{ theLink }}">{{ submenu.full }}</a>
0038
0039 {% endif %}
0040
0041 {% endfor %}
0042
0043 </div>
0044 </li>