Boost HTML 5

<?php

/**

 * Noelab Seo Speed

 * Italian Support Group for Elgg

 * @package Fast by Default and Elgg Performances and SEO

 * @author Lord55

 * @link http://www.noelab.com/

*/

 

// Set title

if (empty($vars['title'])) {

$title = $vars['config']->sitename;

} else if (empty($vars['config']->sitename)) {

$title = $vars['title'];

} else {

$title = $vars['config']->sitename . ": " . $vars['title'];

}

 

global $autofeed;

if (isset($autofeed) && $autofeed == true) {

$url = $url2 = full_url();

if (substr_count($url,'?')) {

$url .= "&view=rss";

} else {

$url .= "?view=rss";

}

if (substr_count($url2,'?')) {

$url2 .= "&view=odd";

} else {

$url2 .= "?view=opendd";

}

$feedref = <<<END

 

<link rel="alternate" type="application/rss+xml" title="RSS" href="{$url}" />

<link rel="alternate" type="application/odd+xml" title="OpenDD" href="{$url2}" />

 

END;

} else {

$feedref = "";

}

 

// we won't trust server configuration but specify utf-8

header('Content-type: text/html; charset=utf-8');

 

$version = get_version();

$release = get_version(true);

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<meta name="ElggRelease" content="<?php echo $release; ?>" />

<meta name="ElggVersion" content="<?php echo $version; ?>" />

<title><?php echo $title; ?></title>

<!-- include the default css file -->

<link rel="stylesheet" href="<?php echo $vars['url']; ?>_css/css.css?lastcache=<?php echo $vars['config']->lastcache; ?>&amp;viewtype=<?php echo $vars['view']; ?>" type="text/css" />

 

    <!-- include default js file from cdn -->

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script&gt;

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script&gt;

<script type="text/javascript" src="http://cachedcommons.org/cache/jquery-form/2.4.3/javascripts/jquery-form-min.js"></script&gt;

 

    <script type="text/javascript" src="<?php echo $vars['url']; ?>_css/js.php?lastcache=<?php echo $vars['config']->lastcache; ?>&amp;js=initialise_elgg&amp;viewtype=<?php echo $vars['view']; ?>"></script>

 

 

<?php

global $pickerinuse;

if (isset($pickerinuse) && $pickerinuse == true) {

?>

<!-- only needed on pages where we have friends collections and/or the friends picker -->

<!-- include js jquery-easing from cdn -->

<script type="text/javascript" src="http://cachedcommons.org/cache/jquery-easing/1.3.0/javascripts/jquery-easing-min.js"></script&gt;

<script type="text/javascript" src="<?php echo $vars['url']; ?>_css/js.php?lastcache=<?php echo $vars['config']->lastcache; ?>&amp;js=friendsPickerv1&amp;viewtype=<?php echo $vars['view']; ?>"></script>

<?php

}

?>

<?php

echo $feedref;

echo elgg_view('metatags',$vars);

?>

<script type="text/javascript">

jQuery(document).ready(function($) {

});

</script>

</head>

 

<?php //include flush

ob_end_flush();

ob_flush();

?>

 

<body>