Closed (fixed)
Project:
Bulma CSS
Version:
8.x-1.0-beta3
Component:
Code
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
21 Aug 2019 at 19:35 UTC
Updated:
4 Sep 2019 at 21:04 UTC
Jump to comment: Most recent
Google audit has found a HTML5 typo in the shipped page.html.twig template.
The aria role attribute has to be role="complementary" not role="complimentary"
// in bulma/templates/system/page.html.twig, line 228,247
...
<aside{{page.sidebar_first_attributes|without('role')}} role="complimentary">
{{ page.sidebar_first }}
</aside>
...
<aside{{page.sidebar_second_attributes|without('role')}} role="complimentary">
{{ page.sidebar_second }}
</aside>
Comments
Comment #3
nedjoFixed, thx!