<?php
/* Presentation Page-Specific Data */
$keynote = true;
$trackNum = ''; // Track #, roman numeral, displayed as-is
$trackName = 'Afternoon Keynote'; // Track Name, displayed as-is
$sessionNum = ''; // Session #, displayed as-is
$sessionName = 'The New Digital Landscape: Content Performance Marketing'; // Session Name, displayed as-is
$fileName = 'share14-afternoon-keynote-google'; // Presentation resources file name, ignore extension
// Presenter(s)
$presenters = array(
'paired' => false, // Pair of presenters? Set 'true'/'false'
// Main presenter
'p1' => 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
'bio' => "Darren leads Google's Global Customer Acquisitions team, a team focused on helping businesses of all size discover the power of Google's online advertising services, including Google Search, Google Display Network, and YouTube. In his role, Darren oversees a mix of sales models including self service, 3rd party, inbound telesales, and a high-end outbound sales team, as well as several central teams focused on market insights, and sales performance improvement. These teams allow Google to reach millions of companies around the world each year and introduce them to the benefits of online advertising." // 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' => 'Jim Yu',
'title' => 'CEO and Founder',
'org' => 'BrightEdge',
'link' => 'keynote-jim-yu'
),
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';
?>