* @license   http://www.gnu.org/licenses/lgpl-3.0.html LGPLv3
 */
// no direct access
defined('_JEXEC') or die('Restricted access');
$config = JFactory::getConfig();
//define tempate
$this->template = 'alveo2015';
//get device info
$browser = new \Hubzero\Browser\Detector();
//get joomla version
$joomlaVersion = new JVersion();
$joomlaRelease = 'joomla' . $joomlaVersion->RELEASE;
?>
<!DOCTYPE html>
<html class="<?php 
echo strtolower($browser->device() . ' ' . $browser->platform() . ' ' . $browser->platformVersion());
?>
 <?php 
echo $joomlaRelease;
?>
">
	<head>
		<!-- <meta http-equiv="X-UA-Compatible" content="IE=edge" /> Doesn't validate... -->

		<link rel="stylesheet" type="text/css" media="screen" href="<?php 
echo \Hubzero\Document\Assets::getSystemStylesheet(array('fontcons', 'reset', 'columns', 'notifications', 'pagination', 'tabs', 'tags', 'tooltip', 'comments', 'voting', 'icons', 'buttons', 'layout'));
/* reset MUST come before all others except fontcons */
?>
" />
		<link rel="stylesheet" href="<?php 
echo $this->baseurl;