<?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-jones'; // Presentation resources file name, ignore extension
// Presenter(s)
$presenters = array(
'paired' => false, // Pair of presenters? Set 'true'/'false'
// Main presenter
'p1' => array(
'name' => 'Dixon Jones',
'title' => 'Director of Marketing',
'org' => 'Majestic',
'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' => '', // 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' => 'Seth Holladay',
'title' => 'Senior Director, Audience and Monetization',
'org' => 'NBC Universal',
'link' => 'content-metrics-that-matter-seth-holladay'
)
);
/*****
***
*
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';
?>