<?php
/* Presentation Page-Specific Data */
$trackNum = 'I'; // Track #, roman numeral, displayed as-is
$trackName = 'Optimization - The New SEO Landscape'; // Track Name, displayed as-is
$sessionNum = '1b'; // Session #, displayed as-is
$sessionName = 'The Changing SERP - Staying on Top of the Competition'; // Session Name, displayed as-is
$fileName = 'share14-1b-changingserp-gibson'; // Presentation resources file name, ignore extension
// Presenter(s)
$presenters = array(
'paired' => false, // Pair of presenters? Set 'true'/'false'
// Main presenter
'p1' => array(
'name' => 'Leslie Gibson',
'title' => 'Associate Director of Content Marketing',
'org' => 'Nina Hale',
'bio' => "With her background equally footed in digital and traditional marketing, Leslie knows that great content is essential to every campaign. She crafts the messages that clients use to market their products, finding inspiration in keyword research. Leslie loves showing clients what they’re already doing right -- and how they can engage audiences and continue to drive success. Her interests in cooking and dance mimic how she creates content: step by step, knowing that every detail contributes to an extraordinary experience. " // Presenter 1 Biography, displayed as-is
),
// Optional unless 'paired' set to 'true'
'p2' => array(
'name' => 'Dan Reno', // Presenter 2 Name, displayed as-is
'title' => 'Vice President of Organic Media', // Presenter 2 Title, displayed as-is
'org' => 'BeFoundOnline', // Presenter 2 Organization, displayed as-is
'bio' => 'Dan Reno is a search industry veteran of more than 10 years. Having worked in paid and organic search when his career began, Dan is now head of Organic Media for Be Found Online. In his role, he sets and executes strategy for Organic Search and Content Marketing while also overseeing the growing Google Analytics practice. ' // Presenter 2 Biography, displayed as-is
)
);
// Other presenters in same session
$otherPresenters = array(
0 => array(
'paired' => true,
'p1' => array(
'name' => 'Steve Krull',
'title' => 'CEO',
'org' => 'BeFoundOnline'
),
'p2' => array(
'name' => 'Dan Reno',
'title' => 'Vice President of Organic Media',
'org' => 'BeFoundOnline'
),
'link' => 'the-changing-serp-steve-krull-dan-reno'
),
1 => array(
'name' => 'Melissa Walner',
'title' => 'Director of Global SEO',
'org' => 'Hilton Worldwide',
'link' => 'the-changing-serp-melissa-walner'
),
2 => array(
'name' => 'AJ Kohn',
'title' => 'Owner',
'org' => 'Blind 5 Year Old',
'link' => 'the-changing-serp-aj-kohn'
)
);
/*****
***
*
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';
?>