diff options
| author | Evan Winslow <evan.b.winslow@gmail.com> | 2010-06-24 19:44:49 +0000 | 
|---|---|---|
| committer | Evan Winslow <evan.b.winslow@gmail.com> | 2010-06-24 19:44:49 +0000 | 
| commit | 1f8af59dc552d1a825d3575bff8e7ed403d125ba (patch) | |
| tree | 5435cf90a526e931e0f5f4a6c787803827b6964d | |
| parent | be7dd0926c18867084f0dde1a292333a6e53476d (diff) | |
| download | elgg-1f8af59dc552d1a825d3575bff8e7ed403d125ba.tar.gz elgg-1f8af59dc552d1a825d3575bff8e7ed403d125ba.tar.bz2  | |
Adding html5 plugin -- all it does now is provide the appropriate header
| -rw-r--r-- | start.php | 1 | ||||
| -rw-r--r-- | views/default/page_elements/header.php | 21 | 
2 files changed, 22 insertions, 0 deletions
diff --git a/start.php b/start.php new file mode 100644 index 000000000..6fd199e66 --- /dev/null +++ b/start.php @@ -0,0 +1 @@ +<?php
 diff --git a/views/default/page_elements/header.php b/views/default/page_elements/header.php new file mode 100644 index 000000000..c50831043 --- /dev/null +++ b/views/default/page_elements/header.php @@ -0,0 +1,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>
\ No newline at end of file  | 
