<?php
/* Presentation Page-Specific Data */
$trackNum = 'II'; // Track #, roman numeral, displayed as-is
$trackName = 'Content Marketing - The Path to Measurement'; // Track Name, displayed as-is
$sessionNum = '2b'; // Session #, displayed as-is
$sessionName = 'The Content Catalyst - Search, Social and Content Interplay'; // Session Name, displayed as-is
$fileName = 'share14-2b-contentcatalyst-comacchio'; // Presentation resources file name, ignore extension
// Presenter(s)
$presenters = array(
'paired' => false, // Pair of presenters? Set 'true'/'false'
// Main presenter
'p1' => array(
'name' => 'Brenna Comacchio',
'title' => 'Search Marketing Analyst',
'org' => 'Autodesk',
'bio' => "Brenna has worked within digital marketing functions for over five years building global brand awareness, creating social media content, running campaigns, and optimizing marketing initiatives based on data & analytics, both in-house and as an independent consultant. Most recently, she’s been evaluating search performance and implementing SEO enhancements as a Search Marketing Analyst at Autodesk. Brenna holds a Bachelor of Commerce in Finance, Strategic Management, and Environmental Studies from McGill University in Montreal, and a Master of Digital Marketing from Hult International Business School in San Francisco." // 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(
'name' => 'Duane Forrester',
'title' => 'Senior Product Marketing Manager',
'org' => 'Bing',
'link' => 'the-content-catalyst-duane-forrester'
),
1 => array(
'name' => 'Rob Creekmore',
'title' => 'Advertising Research Manager, Marketing Science',
'org' => 'Facebook',
'link' => 'the-content-catalyst-rob-creekmore'
),
2 => array(
'name' => 'David Whitworth',
'title' => 'SEO Manager',
'org' => 'Rackspace',
'link' => 'the-content-catalyst-david-whitworth'
),
3 => array(
'name' => 'Eddie Smith',
'title' => 'Head of Ads API',
'org' => 'Twitter',
'link' => 'the-content-catalyst-eddie-smith'
)
);
/*****
***
*
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';
?>