|
| 1 | +<?php |
| 2 | + |
| 3 | +// provides small functions |
| 4 | +include('php/general.php'); |
| 5 | + |
| 6 | + |
| 7 | +// controls cookie, sets $eng as boolean depending on language choice and provides 'en' or 'de' in $language |
| 8 | +include('php/language_cookie.php'); |
| 9 | + |
| 10 | + |
| 11 | + |
| 12 | +// creates $lang array and provides translation text for common elements (navigation and footer) |
| 13 | +include('includes/language.php'); |
| 14 | + |
| 15 | +// include all translations from local file |
| 16 | +include('../data.php'); |
| 17 | +include('../lang.php'); |
| 18 | + |
| 19 | + |
| 20 | +// GENERAL |
| 21 | + |
| 22 | +$active_nav = 'companies'; |
| 23 | + |
| 24 | +// $fb = array( |
| 25 | +// "title" => "", |
| 26 | +// "desc" => "", |
| 27 | +// "url" => $awss3."/opengraph/", |
| 28 | +// "image_url" => "", |
| 29 | +// "image_width" => "", |
| 30 | +// "image_height" => "" |
| 31 | +// ); |
| 32 | + |
| 33 | + |
| 34 | +$template['company_name'] = 'BASF'; |
| 35 | +$template['company_name_short'] = 'basf'; |
| 36 | +$template['logo_url'] = set_source($awss3.'/companies/basf/logo_svg','svg', FALSE); |
| 37 | +$template['package'] = 'gold'; |
| 38 | +$template['day'] = 1; |
| 39 | + |
| 40 | +$lang['general']['page_title'] = array('Chemtogether 2018 - Firmen: '.$template['company_name'], 'Chemtogether 2018 - Companies:'.$template['company_name']); |
| 41 | +$lang['navigation']['title'] = array($template['company_name'], $template['company_name']); |
| 42 | +$lang['navigation']['topnav_title']= array($template['company_name'], $template['company_name']); |
| 43 | + |
| 44 | +$template['homepage'] = array('https://www.basf.com','basf.com'); |
| 45 | +$template['facebook'] = array('https://facebook.com/basf/', 'BASF'); |
| 46 | +$template['linkedin'] = array('https://www.linkedin.com/company/basf/','BASF'); |
| 47 | +// $template['mail'] = array('',''); |
| 48 | +$template['archive'] = '/archive/basf'; |
| 49 | + |
| 50 | +$template['we_are'] = array( |
| 51 | + 'In Kürze.', |
| 52 | + 'Coming soon.'); |
| 53 | +$template['we_offer'] = array( |
| 54 | + 'In Kürze.', |
| 55 | + 'Coming soon.'); |
| 56 | +$template['we_look'] = array( |
| 57 | + 'In Kürze.', |
| 58 | + 'Coming soon.'); |
| 59 | + |
| 60 | + |
| 61 | + |
| 62 | +$template['interview_print_until'] = 0; |
| 63 | + |
| 64 | + |
| 65 | + |
| 66 | +include('../0_template/template.php'); |
| 67 | + |
| 68 | + |
| 69 | + |
| 70 | +?> |
0 commit comments