<?php
/* Presentation Page-Specific Data */
$keynote = true;
$trackNum = ''; // Track #, roman numeral, displayed as-is
$trackName = 'Keynote'; // Track Name, displayed as-is
$sessionNum = ''; // Session #, displayed as-is
$sessionName = 'Share14 CEO Keynote'; // Session Name, displayed as-is
$fileName = 'share14-ceo-keynote'; // Presentation resources file name, ignore extension
// Presenter(s)
$presenters = array(
'paired' => false, // Pair of presenters? Set 'true'/'false'
// Main presenter
'p1' => array(
'name' => 'Jim Yu',
'title' => 'CEO and Founder',
'org' => 'BrightEdge',
'bio' => "Jim is the founder and CEO of BrightEdge, the leading enterprise SEO Platform. He combines in-depth expertise in developing and marketing large on-demand software platforms with hands-on experience in advanced SEO practices. Prior to founding BrightEdge, Jim was at Salesforce.com where he led a core part of the platform products team that delivered the industry's first cloud computing platform." // Presenter 1 Biography, displayed as-is
),
// Optional unless 'paired' set to 'true'
'p2' => array(
'name' => '', // Presenter 2 Name, displayed as-is
'title' => '', // Presenter 2 Title, displayed as-is
'org' => '', // Presenter 2 Organization, displayed as-is
'bio' => '' // Presenter 2 Biography, displayed as-is
)
);
// Other presenters in same session
$otherPresenters = array(
0 => array(
'name' => 'Darren Pleasance', // Presenter 1 Name, displayed as-is
'title' => 'Head of Customer Acquisitions', // Presenter 1 Title, displayed as-is
'org' => 'Google', // Presenter 1 Organization, displayed as-is
'link' => 'keynote-darren-pleasance'
),
1 => array(
'name' => 'Duane Forrester',
'title' => 'Senior Product Manager',
'org' => 'Bing',
'link' => 'keynote-duane-forrester'
),
2 => array(
'name' => 'Stephen Dubner',
'title' => 'Co-Author - Think Like a Freak',
'org' => '',
'link' => 'keynote-stephen-dubner'
)
);
/*****
***
*
END OF PAGE-SPECIFIC DATA
PLEASE DO NOT MODIFY BEYOND THIS POINT
*
***
*****/
?>
<?php
$share_path = "/sites/all/themes/custom/pannelli/share/";
include_once DRUPAL_ROOT . $share_path . 'templates/session_presentation.php';
?>