getting there, now just need to fill out the rest of the content
[gitmo/moose-website.git] / lib / Moose / Website / Resource / Templates / support.tt
1 [% WRAPPER 'wrapper/sub_page.tt' %]
2
3     <h2>[% loc('support header') %]</h2>
4
5     <h3>[% loc('support irc header') %]</h3>
6     <p>[% loc('support irc body') %]</p>
7     <ul>
8         [% FOREACH channel IN current_page.data.irc %]
9             <li>[% channel %]</li>
10         [% END %]
11     </ul>
12
13     <h3>[% loc('support mailing list header') %]</h3>
14     <p>[% loc('support mailing list body') %]</p>
15     <p>
16         <a href="mailto:[% current_page.data.mailing_list.address %]">[% loc('support moose mailing list') %]</a>
17         <br/>
18         <a target="_blank" href="[% current_page.data.mailing_list.archive %]">[% loc('support moose mailing list archives') %]</a>
19     </p>
20
21 <!--
22     <h3>[% loc('support training header') %]</h3>
23     <p>[% loc('support training body') %]</p>
24     <ul>
25         [% FOREACH item IN current_page.data.training %]
26             <li><a target="_blank" href="[% item.url %]">[% item.name %]</a></li>
27         [% END %]
28     </ul>
29
30     <h3>[% loc('support consulting header') %]</h3>
31     <p>[% loc('support consulting body') %]</p>
32     <ul>
33         [% FOREACH item IN current_page.data.consulting %]
34             <li><a target="_blank" href="[% item.url %]">[% item.name %]</a></li>
35         [% END %]
36     </ul>
37 -->
38
39     <h3>[% loc('support misc header') %]</h3>
40     <p>[% loc('support misc body') %]</p>
41     <ul>
42         [% FOREACH item IN current_page.data.misc %]
43             <li><a target="_blank" href="[% item.url %]">[% loc('support ' _ item.name) %]</a></li>
44         [% END %]
45     </ul>
46
47 [% END %]