Can't get a very simple menu to work

Couple of things…

1) In your header partial, replace this:

href="{{ .PageRef }}"

with this:

href="{{ .URL }}"

2) Whenever you call this partial, you must pass the current page context. In some places you have this:

{{ partial "header.html" }}  # INCORRECT

In other places you have this:

{{ partial "header.html" . }}  # CORRECT