fixing the spelling of the name and then sorting the list
Stevan Little [Fri, 2 Apr 2010 19:23:24 +0000 (15:23 -0400)]
data/pages.yml
lib/Moose/Website/Resource/Templates/about.tt

index 18fd479..5a93727 100644 (file)
@@ -9,8 +9,8 @@
     companies:
       - name : "Yahoo!"
         url  : http://www.yahoo.com
-      - name : "Symatec"
-        url  : http://www.symatec.com
+      - name : "Symantec"
+        url  : http://www.symantec.com
       - name : "Cisco"
         url  : http://www.cisco.com
       - name : "IMDb"
index 927afab..00c56a5 100644 (file)
@@ -10,7 +10,7 @@
 
     <p>
         <ul>
-            [% FOREACH company IN current_page.data.companies %]
+            [% FOREACH company IN current_page.data.companies.sort('name') %]
                 <li><a href="[% company.url %]">[% company.name %]</a></li>
             [% END %]
         </ul>