projects
/
gitmo/moose-website.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
92d8ba6
)
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
patch
|
blob
|
blame
|
history
lib/Moose/Website/Resource/Templates/about.tt
patch
|
blob
|
blame
|
history
diff --git
a/data/pages.yml
b/data/pages.yml
index
18fd479
..
5a93727
100644
(file)
--- a/
data/pages.yml
+++ b/
data/pages.yml
@@
-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"
diff --git
a/lib/Moose/Website/Resource/Templates/about.tt
b/lib/Moose/Website/Resource/Templates/about.tt
index
927afab
..
00c56a5
100644
(file)
--- a/
lib/Moose/Website/Resource/Templates/about.tt
+++ b/
lib/Moose/Website/Resource/Templates/about.tt
@@
-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>