Links to second level section pages from child pages

Fantastic. Thanks so much. I wouldn’t have come up with that on my own. As I didn’t want this link to show up at all in pages of the area level or above I made a minor modification (line 4) and all’s well:

{{ with .Parent }}
    {{ if eq $level 4 }}
    <a href="{{ .Parent.RelPermalink }}">{{ .Parent.LinkTitle }}</a>
    {{ else if eq $level 3 }}
    <a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
    {{ end }}
{{ end }}

Quite a bit of code for one link though. Would be good if a future version of Hugo could have .SecondSection and even .ThirdSection perhaps?