diff --git a/2020/www/lua-generator.php b/2020/www/lua-generator.php index d5afd61..1522ec1 100644 --- a/2020/www/lua-generator.php +++ b/2020/www/lua-generator.php @@ -1,60 +1,62 @@ . // load all the stuff require 'load.php'; // load this conference $conference = ( new QueryConference() ) ->whereConferenceUID( THIS_CONFERENCE_UID ) ->queryRow(); // no conference no party if( !$conference ) { error_die( sprintf( "missing conference %s", THIS_CONFERENCE_UID ) ); } +// print the website header template_2020( 'header', [ 'conference' => $conference, ] ); +// query the Conference Events $events = ( new QueryEvent() ) ->whereConference( $conference ) ->orderBy( Event::START ) ->orderBy( Event::END ) ->queryGenerator(); ?>
',
 				$event->getEventID(),
 				$event->getEventTitle()
 			) ) ?>
$conference, ] );