From 36db0524e4d0f6bc6fa2440b0df2c425c4d130fc Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Sat, 29 Jan 2022 03:43:28 +0100 Subject: a11y fix heading levels --- website/templates/features/_features.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'website/templates/features') diff --git a/website/templates/features/_features.html b/website/templates/features/_features.html index f54a8fca..df339670 100644 --- a/website/templates/features/_features.html +++ b/website/templates/features/_features.html @@ -14,14 +14,14 @@ <#macro overview>
- <@main.h3 title="Overview" /> + <@main.h2 title="Overview" /> <#nested>
<#macro experimental>
- <@main.h3 title="Experimental" /> + <@main.h2 title="Experimental" /> Experimental because: <#nested> @@ -31,13 +31,13 @@ <#macro snippets name>
- <@main.h3 title="With Lombok" /> + <@main.h2 title="With Lombok" />
${usages.pre(name)?no_esc}
- <@main.h3 title="Vanilla Java" /> + <@main.h2 title="Vanilla Java" />
${usages.post(name)?no_esc}
@@ -46,7 +46,7 @@ <#macro confKeys>
- <@main.h3 title="Supported configuration keys:" /> + <@main.h2 title="Supported configuration keys:" />
<#nested>
@@ -55,7 +55,7 @@ <#macro smallPrint>
- <@main.h3 title="Small print" /> + <@main.h2 title="Small print" />
<#nested> @@ -71,7 +71,7 @@
<@main.h1 title="${title}" /> - <@main.h3 title="${logline?no_esc}" /> + <@main.h2 title="${logline?no_esc}" />
<#nested> -- cgit