It's better to not include a table in a paragraph

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@116062 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
aheritier 2004-09-23 00:17:55 +00:00
parent e1ccb70b3e
commit 47defa6971

View File

@ -20,28 +20,27 @@
<document>
<properties>
<title>$overviewPageTitle</title>
<author email="michal.maczka@dimatics.com">Michal Maczka</author>
</properties>
<body>
<section name="$overviewPageTitle">
<p>
#if ($overviewPageText && $overviewPageText.length() > 0)
<body>
<section name="$overviewPageTitle">
<p>
#if ($overviewPageText && $overviewPageText.length() > 0)
${overviewPageText}
<br/>
#end
#end
</p>
<table>
#foreach ($project in $multiprojects)
<tr>
#if ($navType == "aggregate")
<th><a href="${aggregateDir}${project.artifactId}/index.html">${project.name}</a></th>
#else
<th><a href="${project.url}">${project.name}</a></th>
#end
<td>${project.shortDescription}</td>
</tr>
<tr>
#if ($navType == "aggregate")
<th><a href="${aggregateDir}${project.artifactId}/index.html">${project.name}</a></th>
#else
<th><a href="${project.url}">${project.name}</a></th>
#end
<td>${project.shortDescription}</td>
</tr>
#end
</table>
</p>
</section>
</body>
</section>
</body>
</document>