<?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-munroe'; // Presentation resources file name, ignore extension
// Presenter(s)
$presenters = array(
'paired' => false, // Pair of presenters? Set 'true'/'false'
// Main presenter
'p1' => array(
'name' => 'Mark Munroe',
'title' => 'Director of SEO',
'org' => 'Trulia',
'bio' => "Mark is the Director of SEO of Trulia, the real estate portal for consumers and agents. Mark previously handled SEO and Product Management responsibilities for merchantcircle.com, taking it from launch to 18 million + monthly organic visits. Mark has also worked on a variety of large organic sites including: EverydayHealth.com, Whattoexpect.com, Usedcar.com, PeopleSmart.com, Vayam.com, Sidestep.com (now part of Kayak) and Wine.com. Mark frequently speaks at Search Marketing Expo events and blogs on several SEO related topics at www.seoradar.com" // 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' => '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
),
'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
),
'link' => 'best-practice-makes-perfect-dixon-jones-dawna-olsen'
),
1 => array(
'name' => 'Binti Pawa',
'title' => 'Head of SEO',
'org' => 'Time, Inc.',
'link' => 'best-practice-makes-perfect-binti-pawa'
)
);
/*****
***
*
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';
?>