je sais plus
This commit is contained in:
Nicolas Michard
2008-02-25 10:04:37 +00:00
parent ec8d2c4d18
commit ffefb6f229
11 changed files with 62 additions and 32 deletions

View File

@@ -8,7 +8,13 @@
<c:choose>
<c:when test="${currentConferenceId != null}">
<!-- Main page for current conference -->
<h4 class="title">${currentConference.title}</h4>
<h4 class="title">
${fn:substring(currentConference.title, 0, 90)}
<c:if test="${fn:length(currentConference.title) > 91}">
...
</c:if>
</h4>
<c:if test="${end != null}">
<div class="warningBox">
@@ -16,7 +22,14 @@
</div>
</c:if>
<center><h1 class="maintitle">${currentConference.title}</h1></center>
<center><h1 class="maintitleconf" title="${currentConference.title}">
${fn:substring(currentConference.title, 0, 40)}
<c:if test="${fn:length(currentConference.title) > 41}">
...
</c:if>
</h1></center>
<h3 class="descriptionTitle"><fmt:message key="conference.detail.description" /></h3>
<div class="textBox">
${currentConference.description }