diff options
Diffstat (limited to 'website/templates/features/_features.html')
-rw-r--r-- | website/templates/features/_features.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/website/templates/features/_features.html b/website/templates/features/_features.html index 2e338834..dcee152c 100644 --- a/website/templates/features/_features.html +++ b/website/templates/features/_features.html @@ -14,14 +14,14 @@ <#macro overview> <div class="row"> - <h3>Overview</h3> + <@main.h3 title="Overview" /> <#nested> </div> </#macro> <#macro experimental> <div class="row"> - <h3>Experimental</h3> + <@main.h3 title="Experimental" /> Experimental because: <#nested> @@ -31,13 +31,13 @@ <#macro snippets name> <div class="row container-fluid"> <div class="snippet-col first-snippet"> - <h3>With Lombok</h3> + <@main.h3 title="With Lombok" /> <div class="snippet">${usages.pre(name)?no_esc}</div> </div> <div class="sep"></div> <div class="snippet-col second-snippet"> - <h3>Vanilla Java</h3> + <@main.h3 title="Vanilla Java" /> <div class="snippet">${usages.post(name)?no_esc}</div> </div> @@ -46,7 +46,7 @@ <#macro confKeys> <div class="row"> - <h3>Supported configuration keys:</h3> + <@main.h3 title="Supported configuration keys:" /> <dl> <#nested> </dl> @@ -55,7 +55,7 @@ <#macro smallPrint> <div class="row"> - <h3>Small print</h3> + <@main.h3 title="Small print" /> <div class="smallprint"> <#nested> @@ -68,9 +68,9 @@ <div class="page-header top5" id="featureContent"> <div class="row text-center"> <div class="header-group"> - <h1>${title}</h1> + <@main.h1 title="${title}" /> - <h3>${logline?no_esc}</h3> + <@main.h3 title="${logline?no_esc}" /> </div> </div> <#nested> |