Warning, /epic.github.io/_includes/layouts/autodrop.md is written in an unsupported language. File is not indexed.
0001 <li class="nav-item dropdown px-4">
0002 <a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" style="color: #fff;">{{ include.title }}</a>
0003 <div class="dropdown-menu" aria-labelledby="navbarDropdown">
0004
0005 {% assign items = include.what | sort: 'weight' %}
0006
0007 {% for item in items %}
0008 {% if item.level != 0 %}{% continue %}{% endif %}
0009 {% if item.div %}<div class="dropdown-divider"></div>{% endif %}
0010
0011 {% if item.link %}
0012 {% assign theLink=item.link %}
0013 {% assign target=site.blank %}
0014 {% else %}
0015 {% assign theLink=item.url | relative_url %}
0016 {% assign target='' %}
0017 {% endif %}
0018
0019 <a class="dropdown-item" href="{{ theLink }}" {{ target }}>{{ item.title }}</a>
0020 {% endfor %}
0021 </div>
0022 </li>