<?php
/* Presentation Page-Specific Data */
$trackNum = 'V'; // Track #, roman numeral, displayed as-is
$trackName = 'Share Insights'; // Track Name, displayed as-is
$sessionNum = '2f'; // Session #, displayed as-is
$sessionName = 'Data Keys - Mining Data for SEO and Content at Scale'; // Session Name, displayed as-is
$fileName = 'share14-2f-datamining-scott'; // Presentation resources file name, ignore extension
// Presenter(s)
$presenters = array(
'paired' => false, // Pair of presenters? Set 'true'/'false'
// Main presenter
'p1' => array(
'name' => 'Denis Scott',
'title' => 'Senior Director of Marketing - Acquisition',
'org' => 'OpenTable',
'bio' => "Leading a team of talented marketers across all acquisition channels including SEO, Paid Search, Mobile, Display, Social, Partnerships, and more. Background includes working at companies like the Gap and the Clorox company as well as 4 years working for a locally own company in Hawaii. Not only has worked in the digital marketing space but also the traditional space including TV, Radio, Print, and Promotions. Only has time to focus on marketing when he is not in the ocean as his real focus is on surfing." // 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' => 'Chris Attewell',
'title' => 'SVP Americas',
'org' => 'Search Laboratory',
'link' => 'mining-data-for-seo-chris-attewell'
),
1 => array(
'name' => 'Kiril Kronrod', // Presenter 1 Name, displayed as-is
'title' => 'Senior Global SEO Manager', // Presenter 1 Title, displayed as-is
'org' => 'Adobe', // Presenter 1 Organization, displayed as-is
'link' => 'mining-data-for-seo-kirill-kronrod'
),
2 => array(
'name' => 'Matt Saunders',
'title' => 'Director, SEO Strategist',
'org' => 'Rosetta',
'link' => 'mining-data-for-seo-matt-saunders'
)
);
/*****
***
*
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';
?>