{{ if not .Params.Menu }}
<nav>
    <ul>
        <li>
            {{ if .NextInSection }}
            <a alt="Newer article" href="{{ .NextInSection.Permalink }}">&larr; Newer</a>
            {{ else }}
            &nbsp;
            {{ end }} </li>
        <li><a alt="Top of page" href="#">Top</a></li>
        <li>
            {{ if .PrevInSection }}
            <a alt="Older article" href="{{ .PrevInSection.Permalink }}">Older &rarr;</a>
            {{ else }}
            &nbsp;
            {{ end }}
        </li>
    </ul>
</nav>
{{ end }}