BUGFIX: change the Document.ss to its generic format

This commit is contained in:
Normann Lou 2012-08-01 14:48:27 +12:00
parent c08555479c
commit 2800533e40
1 changed files with 14 additions and 23 deletions

View File

@ -1,26 +1,17 @@
<div class="document $File.ClassByExtension <% if ClassName = DocumentTextLabel %>documentLabel<% end_if %>">
<a class="full-link" <% if ClassName = Document %>href="$Link"<% end_if %> title="Download $File.Name"></a>
<% if Title %>
<h4><a href="$Link" title="Download $File.Name">$Title</a></h4>
<% else %>
<h4><a href="$Link" title="Download $File.Name">$File.Name</a></h4>
<% end_if %>
<% if ClassName = Document %>
<p class='details'>
<strong>$File.Name</strong>
| $File.Extension
| $File.Size
| Modified: <% control File.Document %> $LastEdited.Nice <% end_control %>
</p>
<% if Description %>
<p>$Description</p>
<% end_if %>
<div class="document $FileExt">
<% if Title %>
<h4><a href="$DownloadLink" title="Download $Title">$Title</a></h4>
<% else %>
<h4><a href="$DownloadLink" title="Download $FilenameWithoutID">$FilenameWithoutID</a></h4>
<% end_if %>
<% if ClassName = DocumentTextLabel %>
<p class='details'>
<% if Description %>
<strong>$Description</strong>
<% end_if %>
</p>
<p class='details'>
<strong>$FilenameWithoutID</strong>
| $FileExt
| $FileSizeFormatted
| Last Changed: $LastChanged.Nice
</p>
<% if Description %>
<p>$Description</p>
<% end_if %>
</div>