<?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-charan'; // Presentation resources file name, ignore extension
// Presenter(s)
$presenters = array(
'paired' => false, // Pair of presenters? Set 'true'/'false'
// Main presenter
'p1' => array(
'name' => 'Guru Charan',
'title' => 'Vice President of Strategy and Business Development',
'org' => 'Biz2Credit',
'bio' => "Guru is responsible for developing a pipeline of potential borrowers and lenders, setting strategic direction of Biz2Credit. Guru’s background includes engineering at Intel and investment banking (mergers and acquisitions) at Lehman Brothers. He later transitioned to the corporate development and strategy group at Discover Financials, where he successfully worked on the acquisition of LendingTree HLC and Student Loan Corp among others. He led corporate M&A and Business Development at HR Block." // 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' => '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
'link' => 'scaling-content-allison-fabella'
),
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';
?>