- The *page title* is rendered inside a `<h1>`-tag at the beginning of a
generated page. This tag can be easily referenced from CSS and HTML by
its `id`-attribute *sili-title*, or replaced with the help of `sed` in
a post-processing script.
- The *page body* is rendered insied a `<div>`-tag with the `id`
*sili-body*.
- The generated JSON, that captures the project meta-data and the site
structure, is rendered insiede a `<script>`-tag with the `id`
*sili-json*.
#end
#end
#end
-<!-- HEAD -->
-<div class="maven-site">
+<h1 id="sili-title">$!{shortTitle}</h1>
+<div id="sili-body">
$bodyContent
</div>
#if (!$alignedFilePath or $alignedFilePath == 'index.html')
#end
#end
#end
-<!--
-JSON-BEGIN
+<script id="sili-json" type="application/json">
{
"project": "$project.name",
#if ( $project.description )
]
}
JSON-END
--->
+</script>
#end