blob: c50831043753524c149fcbe0a27924454548fad7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
/**
* HTML5 header
* The standard HTML5 header that displays across the site
*
* @package Elgg
* @subpackage Core
* @author Curverider Ltd
* @link http://elgg.org/
*
*/
// we won't trust server configuration but specify utf-8
header('Content-type: text/html; charset=utf-8');
?>
<!DOCTYPE html>
<html>
<?php echo elgg_view('page_elements/head', $vars); ?>
<body>
|