<?php
/* Presentation Page-Specific Data */
$trackNum = 'I'; // Track #, roman numeral, displayed as-is
$trackName = 'Optimization - The New SEO Landscape'; // Track Name, displayed as-is
$sessionNum = '1a'; // Session #, displayed as-is
$sessionName = 'Navigating Secure Search - From Keywords to Content'; // Session Name, displayed as-is
$fileName = 'share14-1a-navigatingsecure-shults'; // Presentation resources file name, ignore extension
// Presenter(s)
$presenters = array(
'paired' => false, // Pair of presenters? Set 'true'/'false'
// Main presenter
'p1' => array(
'name' => 'Ken Shults', // Presenter 1 Name, displayed as-is
'title' => 'Managing Director, Global Consulting', // Presenter 1 Title, displayed as-is
'org' => 'Global Strategies', // Presenter 1 Organization, displayed as-is
'bio' => 'A seasoned marketing veteran, Ken leverages his rich experience in mass customization technology platforms, one-to-one marketing programs and predictive modeling algorithms to lead Global Strategies developments in analytics.' // 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' => 'Jordan Kasteler',
'title' => 'Senior SEO Manager',
'org' => 'Red Door Interactive',
'link' => 'navigating-secure-search-jordan-kasteler'
),
1 => array(
'name' => 'Gene McKenna',
'title' => 'Director of Search Marketing',
'org' => 'Groupon',
'link' => 'navigating-secure-search-gene-mckenna'
)
);
/*****
***
*
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';
?>