fixing the spelling of the name and then sorting the list
[gitmo/moose-website.git] / lib / Moose / Website / Resource / Templates / about.tt
index 1ecc620..00c56a5 100644 (file)
@@ -1,15 +1,19 @@
-[% WRAPPER 'wrapper/sub_page.tt' %]
+[% WRAPPER 'wrapper/root.tt' %]
 
-    <h2>[% loc('about header') %]</h2>
     <p>[% loc('about body') %]</p>
 
+    <h3>[% loc('about new to moose header') %]</h3>
+    <p>[% loc('about new to moose body') %]</p>
+
     <h3>[% loc('about company list header') %]</h3>
     <p>[% loc('about company list body') %]</p>
 
-    <ul>
-        [% FOREACH company IN current_page.data.companies %]
-            <li><a href="[% company.url %]">[% company.name %]</a></li>
-        [% END %]
-    </ul>
+    <p>
+        <ul>
+            [% FOREACH company IN current_page.data.companies.sort('name') %]
+                <li><a href="[% company.url %]">[% company.name %]</a></li>
+            [% END %]
+        </ul>
+    </p>
 
 [% END %]
\ No newline at end of file