diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-04-16 23:29:54 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-04-17 00:45:22 +0200 |
commit | 2df6e15fcaba3387ff6ed715a39807e3ca898667 (patch) | |
tree | 60759a0c6065171fe41af7113c23f9308cd7c55b /templates | |
parent | 3263b80ea94a2d3c8a7d68d8190a93db198e2203 (diff) | |
download | nextcloud-server-2df6e15fcaba3387ff6ed715a39807e3ca898667.tar.gz nextcloud-server-2df6e15fcaba3387ff6ed715a39807e3ca898667.zip |
this is now HTML5
Diffstat (limited to 'templates')
-rw-r--r-- | templates/layout.admin.php | 9 | ||||
-rw-r--r-- | templates/layout.guest.php | 9 | ||||
-rw-r--r-- | templates/layout.user.php | 9 |
3 files changed, 6 insertions, 21 deletions
diff --git a/templates/layout.admin.php b/templates/layout.admin.php index 52912f48767..68b1a9e75e4 100644 --- a/templates/layout.admin.php +++ b/templates/layout.admin.php @@ -1,10 +1,5 @@ -<?php -/* - * Template for admin pages - */ -?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<!DOCTYPE html> +<html> <head> <title>ownCloud</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> diff --git a/templates/layout.guest.php b/templates/layout.guest.php index 8d567759ffc..d86da0610f5 100644 --- a/templates/layout.guest.php +++ b/templates/layout.guest.php @@ -1,10 +1,5 @@ -<?php -/* - * Template for guest pages - */ -?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<!DOCTYPE html> +<html> <head> <title>ownCloud</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> diff --git a/templates/layout.user.php b/templates/layout.user.php index 0ee49623151..7c1bfe5ad2a 100644 --- a/templates/layout.user.php +++ b/templates/layout.user.php @@ -1,10 +1,5 @@ -<?php -/* - * Template for user pages - */ -?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<!DOCTYPE html> +<html> <head> <title>ownCloud</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |