<?php
/* Presentation Page-Specific Data */

$trackNum = 'V'; // Track #, roman numeral, displayed as-is
$trackName = 'Share Insights'; // Track Name, displayed as-is
$sessionNum = '1f'; // Session #, displayed as-is
$sessionName = 'Best Practice Makes Perfect - SEO Success Stories'; // Session Name, displayed as-is
$fileName = 'share14-1f-bestpractices-jones&olsen'; // Presentation resources file name, ignore extension
$caseStudy = 'case-study_Epicor';
// Presenter(s)
$presenters = array(
'paired' => true, // Pair of presenters? Set 'true'/'false'
// Main presenter
'p1' => array(
'name' => 'Dixon Jones', // Presenter 1 Name, displayed as-is
'title' => 'Director of Marketing', // Presenter 1 Title, displayed as-is
'org' => 'Majestic', // Presenter 1 Organization, displayed as-is
'bio' => "Dixon has worked on the forefront of search marketing since 1999, setting up a UK-based search marketing consultancy firm, Receptional. Dixon consistently presents at search conferences globally and has clients in all sectors including national papers and international search engines to understand their own search strategy. In 2009, Dixon became Director of Marketing for one of the world’s largest link analysis engine’s, transforming the Search Engine industry by providing link intelligence on a scale not previously open to the industry." // Presenter 1 Biography, displayed as-is
),
// Optional unless 'paired' set to 'true'
'p2' => array(
'name' => 'Dawna Olsen', // Presenter 2 Name, displayed as-is
'title' => 'Senior Director, Corporate Marketing', // Presenter 2 Title, displayed as-is
'org' => 'Epicor Software', // Presenter 2 Organization, displayed as-is
'bio' => "Dawna Olsen is the senior director of corporate marketing for Epicor Software, a leading provider of industry-specific business software. A digital strategy expert, Olsen drives growth and engagement for Epicor by overseeing strategic initiatives focused on SEO, global site optimization, branding, and user experience excellence for the company’s corporate website and 17 regional sites. In addition, Olsen leads an internal agency and online marketing initiatives for Epicor. Prior to joining Epicor in 2005, Olsen held senior positions at B2B companies in the software, professional services, environmental and high-tech industries. Olsen earned a degree in environmental studies and marketing from the University of California, Santa Barbara." // Presenter 2 Biography, displayed as-is
)
);
// Other presenters in same session
$otherPresenters = array(
0 => array(
'name' => 'Binti Pawa',
'title' => 'Head of SEO',
'org' => 'Time, Inc.',
'link' => 'best-practice-makes-perfect-binti-pawa'
),
1 => array(
'name' => 'Mark Munroe',
'title' => 'Director of SEO',
'org' => 'Trulia',
'link' => 'best-practice-makes-perfect-mark-munroe'
)
);

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

,