<?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-macdonald'; // Presentation resources file name, ignore extension
$caseStudy = 'case-study_Seagate';
// Presenter(s)
$presenters = array(
'paired' => false, // Pair of presenters? Set 'true'/'false'
// Main presenter
'p1' => array(
'name' => 'Ali MacDonald',
'title' => 'Content Marketing Manager',
'org' => 'Seagate Technologies',
'bio' => "As the lead SEO strategist at Seagate Technologies, Ali is focused on developing strategic online initiatives, and implementing SEO and content marketing best practices for Seagate’s global web properties. Ali has built and executed online marketing strategies across multiple brands in the technology space, specializing in improved rankings and leveraging content in the conversion funnel." // 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' => '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'
)
);
/*****
***
*
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';
?>