Error
We were unable to find the page /dayHistory/headlines-random-template.




2009 Roster

No. Athlete Yr. Pos. Hgt. Wgt. Hometown/High School
There was a problem with a Velocity script
Page/sports/roster-men-template
ErrorInvocation of method 'sortedBy' in class com.prestosports.content.HeadlinesSorter threw exception java.lang.UnsupportedOperationException: ComparatorChains must contain at least one Comparator @ roster-men-template[19,34]
Page source:
1: <center>
2: #if ($page.thumbnailURL)<img src="$page.thumbnailURL">#end
3: <br>
4: <br>
5: 
6: <b>$page.title</center></b>
7: <br>
8: <table>
9:  <table class="roster">
10:  <tr class="roster-header">
11:      <td>No.</td>
12:      <td>Athlete</td>
13:      <td>Yr.</td>
14:      <td>Pos.</td>
15:      <td>Hgt.</td>
16:      <td>Wgt.</td>
17:      <td>Hometown/High School</td>
18:   </tr>
19: #foreach ($bioinfo in $headlines.sortedBy("custom1"))
20:   #set ($row = ($velocityCount + 2) % 2)
21:   #set ($bio = $bioinfo.getDataAsObject().getAttributes())
22:   <tr class="roster-row$row">
23:      <td>$!bio.get("custom1")</td>
24:      <td><a href="$bioinfo.url">$!bio.get("full_name")</a></td>
25:      <td>$!bio.get("year")</td>
26:      <td>$!bio.get("position")</td>
27:      <td>$!bio.get("height")</td>
28:      <td>$!bio.get("weight")</td>
29:      <td>$!bio.get("hometown")/$!bio.get("highschool")</td>
30:   </tr>
31: #end
32: </table>
33: 
34: $wiki
35: 
36: #set ($footer = "${page.url}-footer")
37: 
38: $website.include($footer)