<?php
/* Presentation Page-Specific Data */
$trackNum = 'III'; // Track #, roman numeral, displayed as-is
$trackName = 'In-House SEO'; // Track Name, displayed as-is
$sessionNum = '1e'; // Session #, displayed as-is
$sessionName = 'Scaling In-house - Building the Best Enterprise SEO Operation'; // Session Name, displayed as-is
$fileName = 'share14-1e-scalinginhouse-jozaitis'; // Presentation resources file name, ignore extension
// Presenter(s)
$presenters = array(
'paired' => false, // Pair of presenters? Set 'true'/'false'
// Main presenter
'p1' => array(
'name' => 'Michael Jozaitis',
'title' => 'Manager SEO Strategy',
'org' => 'Marriott International',
'bio' => "As Manager of SEO Strategy in Marriott Digital Services (MDS), Marriott International’s comprehensive in-house digital services program. Originally founded in 2008, under the name Emerge, MDS was a hospitality industry first - a cost-recoverable opt-in service providing SEO exclusively for Marriott’s portfolio of hotels. In MDS, Michael is responsible for hotel SEO strategy, operationalizing and scaling search tactic that makeup the program. Michael is also the Marriott Hotel website technical SEO lead, focused on enhancing the platforms SEO foundation. Prior to joining Marriott, Michael was a digital strategist on the agency side with a brand of clients such as Everlast, Electrolux, IBM, Sonic Drive-in, Pearle Vision and Chase." // 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' => 'Dave Lloyd',
'title' => 'Senior Manager, Global Search Marketing',
'org' => 'Adobe',
'link' => 'scaling-in-house-dave-lloyd'
),
1 => array(
'name' => 'Ngia Vang', // Presenter 1 Name, displayed as-is
'title' => 'SEO Team Lead', // Presenter 1 Title, displayed as-is
'org' => 'Experian', // Presenter 1 Organization, displayed as-is
'link' => 'scaling-in-house-ngia-vang'
),
2 => array(
'name' => 'Alex Volk',
'title' => 'Search Marketing Director',
'org' => 'Microsoft',
'link' => 'scaling-in-house-alex-volk'
)
);
/*****
***
*
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';
?>