Help for this page

Select Code to Download


  1. or download this
    <div id="calendar">
     <h3 class="current-day">Wednesday, February 1</h3>
    ...
     <div class="event">Event 2</div>
    
    </div>
    
  2. or download this
    my($twig, $div) = @_;
    if($div->att('id') eq 'calendar'){
     my(@dates) = $div->children('h3');
     my(@events) = $div->children('div');
    }