diff options
author | Roel Spilker <r.spilker@gmail.com> | 2017-10-02 23:36:10 +0200 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2017-10-02 23:36:10 +0200 |
commit | 4ed3a062c08e39d21b23d88f3d2a4934bac390d7 (patch) | |
tree | 632866701791f413eeb4c2f11a641507639921fa /website/templates/features/_features.html | |
parent | 214cff5dd2e9d04b780f3586356c43f7242c06c8 (diff) | |
download | lombok-4ed3a062c08e39d21b23d88f3d2a4934bac390d7.tar.gz lombok-4ed3a062c08e39d21b23d88f3d2a4934bac390d7.tar.bz2 lombok-4ed3a062c08e39d21b23d88f3d2a4934bac390d7.zip |
add ids to h1/h2/h3 for linking directly to them
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> |