<?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 = '2a'; // Session #, displayed as-is
$sessionName = 'Content 3.0 - Creating Win Win-Win Strategies'; // Session Name, displayed as-is
$fileName = 'share14-2a-creatingwinwin-kirchhoff'; // Presentation resources file name, ignore extension
// Presenter(s)
$presenters = array(
'paired' => false, // Pair of presenters? Set 'true'/'false'
// Main presenter
'p1' => array(
'name' => 'Michael Kirchhoff',
'title' => 'Director of SEO & Product Support',
'org' => 'Pennwell',
'bio' => "Michael is the Director of SEO/Product Support for PennWell Media with proven record of successfully building digital media teams, spanning IT and Marketing. Michael's role is to converge technology, analytics & marketing to maximize audience reach and ROI. Michael develops Search, Content, Social Media and Technology Strategies for enterprise B2B and B2C companies. Michael has an exceptional track record in audience growth, omnichannel marketing, data and analytics, website development and e-business strategies." // 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' => 'Sara Snyder',
'title' => 'Global Product Expert, YouTube Channels',
'org' => 'YouTube',
'link' => 'content-3-0-sara-snyder'
)
);
/*****
***
*
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';
?>