<?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 = '1d'; // Session #, displayed as-is
$sessionName = 'Advancement in Global Search - Beyond Translation'; // Session Name, displayed as-is
$fileName = 'share14-1d-globalsearch-berdie'; // Presentation resources file name, ignore extension
$caseStudy = 'case-study_3M';
// Presenter(s)
$presenters = array(
'paired' => false, // Pair of presenters? Set 'true'/'false'
// Main presenter
'p1' => array(
'name' => 'Craig Berdie',
'title' => 'Global Search Marketing Director',
'org' => '3M',
'bio' => "As a search marketing evangelist and leading the global charge of 3M’s organic search performance, Craig provides SEO input to systems architecture teams to ensure that SEO is integrated into 3M’s internet environment. With a deep understanding of buyer’s goals and profiles, vertical markets, and complex distribution channels. Prior to his position at 3M, Craig spent 10 years consulting on search optimization. His work includes SEO training and consulting with women-owned business throughout the Middle East and small businesses in Northern Ireland." // 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' => 'Laura-Ann Mitchell', // Presenter 1 Name, displayed as-is
'title' => 'Digital Marketing Manager', // Presenter 1 Title, displayed as-is
'org' => 'Intel', // Presenter 1 Organization, displayed as-is
),
'p2' => array(
'name' => 'Mellissa Jensen', // Presenter 2 Name, displayed as-is
'title' => 'Director, Strategic Analytics', // Presenter 2 Title, displayed as-is
'org' => 'Global Strategies', // Presenter 2 Organization, displayed as-is
),
'link' => 'advancement-in-global-search-laura-ann-mitchell-mellissa-jensen'
),
1 => array(
'name' => 'Dave Lloyd',
'title' => 'Senior Manager, Global Search Marketing',
'org' => 'Adobe',
'link' => 'advancement-in-global-search-dave-lloyd'
),
2 => array(
'name' => 'Mattia Santin',
'title' => 'Global SEO/Social Manager',
'org' => 'adidas',
'link' => 'advancement-in-global-search-mattia-santin'
)
);
/*****
***
*
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';
?>