-
Notifications
You must be signed in to change notification settings - Fork 181
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Currently, the template is rendering nav links with div and p elements but it's recommended to use appropriate semantic elements such as nav and ul which helps assistive tech.
typo/layouts/partials/header.html
Lines 11 to 24 in 8c8da71
| <div class="flex"> | |
| {{ $currentPage := . }} | |
| {{ with site.Params.menu }} | |
| {{ range . }} | |
| <p class="small {{ if eq .name (lower $currentPage.Name) }} bold {{end}}"> | |
| <a href="{{ .url }}" {{ if and (isset . "newTab") .newTab }}target="_blank" rel="noopener noreferrer"{{ end }}> | |
| /{{.name }} | |
| </a> | |
| </p> | |
| {{ end }} | |
| {{ end }} | |
| </div> |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request