diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2011-01-27 18:18:23 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2011-01-27 18:18:23 +0000 |
commit | 4ace8344cfd8769ef059ec5c920ac663c8c1d4ce (patch) | |
tree | 14427de964a8a0abb2596e97c50a37d5d979f16e /h-source/Application/Views/header.php | |
parent | 4e4b0e82b62d9a5bdce92b3caa2ab18e16122ba0 (diff) |
improved search and impagination with CSS
Diffstat (limited to 'h-source/Application/Views/header.php')
-rw-r--r-- | h-source/Application/Views/header.php | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/h-source/Application/Views/header.php b/h-source/Application/Views/header.php index b7f094d..6b20ccc 100644 --- a/h-source/Application/Views/header.php +++ b/h-source/Application/Views/header.php @@ -1,5 +1,6 @@ <?php if (!defined('EG')) die('Direct access not allowed!'); ?> -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//IT"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//IT" "http://www.w3.org/TR/html4/loose.dtd"> +<html> <?php // h-source, a web software to build a community of people that want to share their hardware information. // Copyright (C) 2010 Antonio Gallo (h-source-copyright.txt) @@ -10,17 +11,16 @@ // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. -// +// // h-source is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. -// +// // You should have received a copy of the GNU General Public License // along with h-source. If not, see <http://www.gnu.org/licenses/>. ?> <?php $u = new UsersModel();?> -<html> <head> <title><?php echo $title;?></title> @@ -30,10 +30,13 @@ <link rel="stylesheet" type="text/css" href="<?php echo $this->baseUrl?>/Public/Css/website.css"> <link rel="Shortcut Icon" href="<?php echo $this->baseUrl?>/Public/Img/tab_icon_2.ico" type="image/x-icon"> - - <!--[if IE]> - <link rel="stylesheet" type="text/css" href="<?php echo $this->baseUrl?>/Public/Css/explorer.css"> - <![endif] --> + <!--[if IE 6]> + <link rel="stylesheet" type="text/css" href="<?php echo $this->baseUrl;?>/Public/Css/explorer6.css"> + <![endif]--> + + <!--[if IE 7]> + <link rel="stylesheet" type="text/css" href="<?php echo $this->baseUrl;?>/Public/Css/explorer7.css"> + <![endif]--> <script type="text/javascript" src="<?php echo $this->baseUrl;?>/Public/Js/jquery/jquery-1.4.2.min.js"></script> <script type="text/javascript" src="<?php echo $this->baseUrl;?>/Public/Js/functions.js"></script> |