<?php
/* Presentation Page-Specific Data */
$trackNum = 'IV'; // Track #, roman numeral, displayed as-is
$trackName = 'Content in Your Organization'; // Track Name, displayed as-is
$sessionNum = '2e'; // Session #, displayed as-is
$sessionName = 'Scaling Content - Transformation in Your Organization'; // Session Name, displayed as-is
$fileName = 'share14-2e-scalingcontent-fabella'; // Presentation resources file name, ignore extension
// Presenter(s)
$presenters = array(
'paired' => false, // Pair of presenters? Set 'true'/'false'
// Main presenter
'p1' => array(
'name' => 'Allison Fabella', // Presenter 1 Name, displayed as-is
'title' => 'Director, Global SEO', // Presenter 1 Title, displayed as-is
'org' => 'CareerBuilder', // Presenter 1 Organization, displayed as-is
'bio' => "Creates and oversees the CareerBuilder.com global strategy and competitive positions. Responsible for executing a road map for SEO enhancements and establishing productive and efficient communication channels within technology, marketing and across geographies." // 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' => 'Seth Restaino',
'title' => 'Director of Professional Services',
'org' => 'BrightEdge',
'link' => 'scaling-content-seth-restaino'
),
1 => array(
'name' => 'Guru Charan',
'title' => 'Vice President of Strategy and Business Development',
'org' => 'Biz2Credit',
'link' => 'scaling-content-guru-charan'
),
2 => array(
'name' => 'Ali MacDonald',
'title' => 'Content Marketing Manager',
'org' => 'Seagate Technologies',
'link' => 'scaling-content-ali-macdonald'
)
);
/*****
***
*
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';
?>