Sha256: 6fa0cb7692ad8b14a3a5e64f79e9207daebf2fb7a85a5dc71d11162f87241ac6

Contents?: true

Size: 1.29 KB

Versions: 7

Compression:

Stored size: 1.29 KB

Contents

<!-- Header -->
<header id="header" {% if include.class %} class="{{ include.class }}" {% endif %}>
    <h1 id="logo">
        <a href="index.html">
            {% if site.logo_url %}
            <img src="{{ site.logo_url | absolute_url }}" width="32" height="32">
            &nbsp;
            {% endif %}
            {{ site.title }} <span>{% if site.subtitle.size < 16 %} {{ site.subtitle }} {% endif %}</span>
        </a>
    </h1>
    <nav id="nav">
        <ul>
        {% for item in site.data.navigation.menu %}
            {% if item.menu[0] %}
            <li class="submenu {% if item.url == page.url %} current {% endif %}">
                <a href="{{ item.url | absolute_url }}">{{ item.title }}</a>
                <ul>
                    {% for subitem in item.menu %}
                    <li {% if subitem.url == page.url %} class="current" {% endif %}>
                        <a href="{{ subitem.url | absolute_url }}">{{ subitem.title }}</a>
                    </li>
                    {% endfor %}
                </ul>
            {% else %}
            <li {% if item.url == page.url %} class="current" {% endif %}>
                <a href="{{ item.url | absolute_url }}">{{ item.title }}</a>
            </li>
            {% endif %}
        {% endfor %}
        </ul>
    </nav>
</header>

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
jekyll-theme-twenty-0.1.6 _includes/header.html
jekyll-theme-parallelism-0.1.3 _includes/header.html
jekyll-theme-parallelism-0.1.2 _includes/header.html
jekyll-theme-parallelism-0.1.1 _includes/header.html
jekyll-theme-parallelism-0.1.0 _includes/header.html
jekyll-theme-parallelism-0.0.1 _includes/header.html
jekyll-theme-twenty-0.1.5 _includes/header.html