]> source.dussan.org Git - archiva.git/commitdiff
display description properly
authorBrett Porter <brett@apache.org>
Tue, 5 Sep 2006 15:37:45 +0000 (15:37 +0000)
committerBrett Porter <brett@apache.org>
Tue, 5 Sep 2006 15:37:45 +0000 (15:37 +0000)
git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@440374 13f79535-47bb-0310-9956-ffa450edef68

archiva-webapp/src/main/webapp/WEB-INF/jsp/include/artifactInfo.jspf
archiva-webapp/src/main/webapp/css/maven-theme.css

index 0ee7767f95c7ae8f9fd35db4eab45d7b0515eb69..606e7ee0f78a1067efac73396f9603c97319ff45 100644 (file)
@@ -34,7 +34,9 @@
   --%>
 </p>
 
-<p>${mode.description}</p>
+<c:if test="${!empty(model.description)}">
+  <blockquote>${model.description}</blockquote>
+</c:if>
 
 <table>
   <tr>
index cb6ad3b9c360effbeeea3fc5605e8833ca28d2ea..40231b41f062a3e498815e38773eba3cc9045f66 100644 (file)
@@ -267,3 +267,8 @@ a:link, a:visited {
 a:active, a:hover {
     color: #f30;
 }
+
+blockquote {
+    border-left: 1px solid #DFDEDE;
+    padding-left: 1em;
+}