<?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 = '2d'; // Session #, displayed as-is
$sessionName = 'Content Metrics That Matter - Measurement, Performance & Value'; // Session Name, displayed as-is
$fileName = 'share14-2d-contentmetrics-holladay'; // Presentation resources file name, ignore extension
// Presenter(s)
$presenters = array(
'paired' => false, // Pair of presenters? Set 'true'/'false'
// Main presenter
'p1' => array(
'name' => 'Seth Holladay',
'title' => 'Senior Director, Audience and Monetization',
'org' => 'NBC Universal',
'bio' => "Seth Holladay is Senior Director of Audience and Monetization at NBC Universal News Group where he concentrates on audience development and revenue for nbcnews.com, today.com and msnbc.com. He was previously Senior Director of Yield Management at Rodale, Inc where he managed ad operations, web analytics and yield management for Rodale’s magazine websites, including MensHealth.com and RunnersWorld.com. Throughout his career he has been focused on utilizing analytics and data to enhance decision-making and advance business objectives." // Presenter 1 Biography, displayed as-is
),
// Optional unless 'paired' set to 'true'
'p2' => array(
'name' => '', // Presenter 2 Name, displayed as-is
'title' => '', // Presenter 2 Title, displayed as-is
'org' => '', // Presenter 2 Organization, displayed as-is
'bio' => '' // Presenter 2 Biography, displayed as-is
)
);
// Other presenters in same session
$otherPresenters = array(
0 => array(
'name' => 'Marty Muse', // Presenter 1 Name, displayed as-is
'title' => 'CEO and Co-Founder', // Presenter 1 Title, displayed as-is
'org' => 'Relevance', // Presenter 1 Organization, displayed as-is
'link' => 'content-metrics-that-matter-marty-muse'
),
1 => array(
'name' => 'Dixon Jones',
'title' => 'Director of Marketing',
'org' => 'Majestic',
'link' => 'content-metrics-that-matter-dixon-jones'
)
);
/*****
***
*
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';
?>