<?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-attewell'; // Presentation resources file name, ignore extension
// Presenter(s)
$presenters = array(
'paired' => false, // Pair of presenters? Set 'true'/'false'
// Main presenter
'p1' => array(
'name' => 'Chris Attewell',
'title' => 'SVP Americas',
'org' => 'Search Laboratory',
'bio' => "Chris currently heads up US operations for Search Laboratory, a global leader in International Search Engine Marketing with 10 years’ experience of helping companies like Urban Outfitters, ASOS and Pepsico expand into new online markets through SEO and SEM in over 30 languages. Prior to working for Search Laboratory Chris was responsible for new business sales for Communicator Corp., one of the UK’s leading email service providers, in the run up to their acquisition by Trinity Mirror Group." // 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' => 'Denis Scott',
'title' => 'Senior Director of Marketing - Acquisition',
'org' => 'OpenTable',
'link' => 'mining-data-for-seo-denis-scott'
),
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';
?>