Merge branch 'topic/image_upload'
[sgn.git] / mason / homepage / events.mas
blob8d4b3ed67f169723817192cff148812afb05c1d3
2 <%perl>
4 use strict;
5 use CXGN::Tools::File;
6 use File::Spec;
8 my $file = File::Spec->catfile($c->get_conf('homepage_files_dir'), 'events.txt');
9 my $contents = qq { Events are currently not available<br /><br /> };
11 eval { 
12  $contents = CXGN::Tools::File::get_sections($file);
15 </%perl>
17 <div class="boxbgcolor1" style="border:0px; ">
18   <div class="boxheading">Events</div>
19   <div class="boxcontent"><% $contents %></div>
20   <a href="oldevents.pl">See all events...</a>
21 </div>