blob: e5c2c0079ad2656f7990ceac8416ef189a2e111d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<#import "/_scaffold.html" as main>
<#macro introduction>
<div class="row">
<#nested>
</div>
</#macro>
<#macro section title>
<div class="row">
<h3>${title}</h3>
<#nested>
</div>
</#macro>
<#macro scaffold title load=[]>
<@main.scaffold load>
<div class="page-header top5" id="featureContent">
<div class="row text-center">
<div class="header-group">
<h1>${title}</h1>
</div>
</div>
<#nested>
</div>
</@main.scaffold>
</#macro>
|