Sha256: 5088242c1f4ecb06fbe479c271d643cca56cb843d81490dea4859a609216b554

Contents?: true

Size: 1.68 KB

Versions: 8

Compression:

Stored size: 1.68 KB

Contents

<!-- Universal NavBar-->
<nav class="navbar navbar-default navbar-static" id="universal-nav">
    <div class="navbar-header">
      <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
        <span class="sr-only">Toggle navigation</span>
        <span class="glyphicon glyphicon-chevron-down"></span>
        <span class="glyphicon glyphicon-chevron-up"></span>
      </button>
    </div>
    <div id="navbar" class="navbar-collapse collapse" role="navigation" aria-expanded="false" style="height: 1px;">
      <ul class="nav navbar-nav navbar-right">
        {% for item in site.data.universal-nav.items %}
            {% if item.options %}
                <li class="dropdown {% for project-site in item.options %}{% if project-site.active %}active{% break %}{% endif %}{% endfor %}">
                    <a href="#" class="projects dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true"
                        aria-expanded="false">{{item.title}} <span class="caret"></span></a>
                    <ul class="dropdown-menu">
                        {% for project-site in item.options %}
                        <li {% if project-site.active %}class="active" {% endif%}><a target="_self" href="{{project-site.url}}">{{project-site.title}}</a></li>
                        {% endfor %}
                    </ul>
                </li>
            {% else %}
                <li {% if item.active %}class="active" {% endif %}><a class="linaro" target="_self" href="{{item.url}}">{{item.title}}</a></li>
            {% endif %}
        {% endfor %}
      </ul>
    </div>
</nav>
<!-- End Universal NavBar -->

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
jumbo-jekyll-theme-5.6.9.2 _includes/universal-nav.html
jumbo-jekyll-theme-5.6.9.1 _includes/universal-nav.html
jumbo-jekyll-theme-5.6.9 _includes/universal-nav.html
jumbo-jekyll-theme-5.6.8 _includes/universal-nav.html
jumbo-jekyll-theme-5.6.7 _includes/universal-nav.html
jumbo-jekyll-theme-5.6.6 _includes/universal-nav.html
jumbo-jekyll-theme-5.6.5 _includes/universal-nav.html
jumbo-jekyll-theme-5.6.4 _includes/universal-nav.html