Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8f8095 commit e04af74Copy full SHA for e04af74
_includes/header.html
@@ -12,11 +12,15 @@ <h1 class="logo"><a href="/">ZeroVM</a></h1>
12
<ul class="clearfix">
13
{% assign sorted_pages = site.pages | where: 'layout', 'sub-page' | sort: 'order' %}
14
{% for p in sorted_pages %}
15
+ <!-- The redirect-from plugin creates title-less pages that
16
+ we want to exclude -->
17
+ {% if p.title != nil %}
18
<li>
19
<a href="{{ p.url }}" class="{% if p.url == page.url %} active {% endif %}">
20
{{ p.title }}
21
</a>
22
</li>
23
+ {% endif %}
24
{% endfor %}
25
<li><a href="http://docs.zerovm.org">Documentation</a></li>
26
<li><a href="http://blog.zerovm.org">Blog</a></li>
0 commit comments