Merge pull request #5101 from solgenomics/topic/list_item_links
[sgn.git] / mason / homepage / sgn_events.mas
blobe8ea98985e7d2b217de8efe0c62494409abfd047
1 <%doc>
2 Displays SGN presentations schedule in workshops, conferences, weddings etc..
4 add the schedule to /data/prod/public/sgn_homepage/sgn_events.txt
5 make a link to '/sgn-events' in an event notice SGN is participating.
7 </%doc>
9 <%perl>
11 use strict;
12 use File::Spec;
13 use CXGN::Tools::File;
15 my $file = File::Spec->catfile($c->config->{'homepage_files_dir'}, 'sgn_events.txt');
17 my $contents = "No SGN event is scheduled at the moment.<br /><br />";
19 eval {
20   $contents = CXGN::Tools::File::get_sections($file);
24 </%perl>
26 <div class="boxbgcolor1" style="margin:0px;">
27 <div class="boxheading">SGN Presentations</div>
28 <div class="boxcontent"><% $contents %></div>
29 </div>