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