mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-30 20:23:11 +00:00
29 lines
500 B
HTML
29 lines
500 B
HTML
<#import "/_scaffold.html" as main>
|
|
|
|
<#macro introduction>
|
|
<div class="row">
|
|
<#nested>
|
|
</div>
|
|
</#macro>
|
|
|
|
<#macro section title>
|
|
<div class="row">
|
|
<@main.h3 title="${title}" />
|
|
|
|
<#nested>
|
|
</div>
|
|
</#macro>
|
|
|
|
<#macro scaffold title load=[]>
|
|
<@main.scaffold load title>
|
|
<div class="page-header top5" id="featureContent">
|
|
<div class="row text-center">
|
|
<div class="header-group">
|
|
<@main.h1 title="${title}" />
|
|
</div>
|
|
</div>
|
|
<#nested>
|
|
</div>
|
|
</@main.scaffold>
|
|
</#macro>
|