Sha256: 307895435f3a6659748424c8788587a6c452d5fef1474942ad9d8fc355acecb6

Contents?: true

Size: 683 Bytes

Versions: 10

Compression:

Stored size: 683 Bytes

Contents

<header>
	<nav>
		<ul>
			{% if site.home.hide_home %}
				<!-- home menu hidden per _config.yaml nav.hide_home_link -->
			{% else %}
				<li><a href="{{ '/' | relative_url }}">{{ site.nav.home | default: "Home" }}</a>
			{% endif %}

			{% assign sorted_pages=(site.pages | sort: "sort_order") %}
			
			{% for page in sorted_pages %}
				{% if page.categories contains 'global' %}
					<li><a href="{{ page.url | relative_url }}">{{ page.title }}</a>
				{% endif %}
			{% endfor %}
			
			{% include additional_glboal_nav.html %}
			
			{% if jekyll.environment == 'local' %}
				<li><a href="{{ '/private/' | relative_url }}">Private</a>
			{% endif %}
		</ul>
	</nav>
</header>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
jekyll-theme-isabelline-0.1.27 _includes/header.html
jekyll-theme-isabelline-0.1.26 _includes/header.html
jekyll-theme-isabelline-0.1.25 _includes/header.html
jekyll-theme-isabelline-0.1.24 _includes/header.html
jekyll-theme-isabelline-0.1.23 _includes/header.html
jekyll-theme-isabelline-0.1.22 _includes/header.html
jekyll-theme-isabelline-0.1.21 _includes/header.html
jekyll-theme-isabelline-0.1.20 _includes/header.html
jekyll-theme-isabelline-0.1.19 _includes/header.html
jekyll-theme-isabelline-0.1.18 _includes/header.html