<?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-mitchell&jensen'; // Presentation resources file name, ignore extension
// Presenter(s)
$presenters = array(
'paired' => true, // Pair of presenters? Set 'true'/'false'
// Main presenter
'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
'bio' => "Over the past 5 years, Laura-Ann has driven Intel’s Search Engine Optimization program across 22 different countries and ensures that search is deeply interwoven into the company’s content strategy and optimization efforts. Her efforts have produced a robust SEO program with record results that continues to redefine how search is managed across the company." // Presenter 1 Biography, displayed as-is
),
// Optional unless 'paired' set to 'true'
'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
'bio' => 'Bringing over 13 years of search engine marketing experience, Mellissa’s understand of the ever-changing search landscape and how it impacts websites, allows her to develop strategic search engine marketing programs with a goal of increasing her client’s websites natural search presence through Search Engine Marketing Optimization (SEO) Social Media Optimization (SMO), link development, and leveraging analytic insights.' // Presenter 2 Biography, displayed as-is
)
);
// Other presenters in same session
$otherPresenters = array(
0 => array(
'name' => 'Dave Lloyd',
'title' => 'Senior Manager, Global Search Marketing',
'org' => 'Adobe',
'link' => 'advancement-in-global-search-dave-lloyd'
),
1 => array(
'name' => 'Mattia Santin',
'title' => 'Global SEO/Social Manager',
'org' => 'adidas',
'link' => 'advancement-in-global-search-mattia-santin'
),
2 => array(
'name' => 'Craig Berdie',
'title' => 'Global Search Marketing Director',
'org' => '3M',
'link' => 'advancement-in-global-search-craig-berdie'
)
);

/*****
***
*
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';
?>

,