Izartu  0.0 Initial release
Web bookmark manager based on tags.
 All Data Structures Files Functions Variables Enumerations
layout.php
Go to the documentation of this file.
00001 <?php
00002 #  Izartu
00003 #
00004 #  Copyright © 2011-2012 Javier Beaumont <contact@javierbeaumont.org>
00005 #
00006 #  This file is part of Izartu.
00007 #
00008 #  Izartu is free software: you can redistribute it and/or modify
00009 #  it under the terms of the GNU Affero General Public License as
00010 #  published by the Free Software Foundation, either version 3 of the
00011 #  License, or (at your option) any later version.
00012 #
00013 #  Izartu is distributed in the hope that it will be useful,
00014 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
00015 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00016 #  GNU Affero General Public License for more details.
00017 #
00018 #  You should have received a copy of the GNU Affero General Public License
00019 #  along with Izartu. If not, see <http://www.gnu.org/licenses/>.
00020 ?>
00021 <?php echo '<?xml version="1.0" encoding="UTF-8"?>'."\n"; ?>
00022 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
00023 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
00024   <head>
00025     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
00026     <title>Izartu</title>
00027     <link rel="shortcut icon" type="image/png, image/gif" href="favicon" />
00028     <link rel="stylesheet" type="text/css" href="style/main.css" media="all" />
00029   </head>
00030   <body>
00031     <div id="header">
00032       <p><a href="?login">Login</a></p>
00033       <h1><a href="./">Izartu</a></h1>
00034     </div>
00035     <div id="content">
00036 <?php
00037     $show = new ShowTag;
00038     $tag = $show->tagCloud();
00039 
00040     include_once PRI_DIR.'template/option.php';
00041 ?>
00042       <div class="body">
00043 <?php
00044   $show = new ShowData;
00045   echo $show->listOrderByDate();
00046 ?>
00047       </div>
00048     </div>
00049     <div id="footer">
00050       <p class="power">Powered by <a href="http://izartu.org">Izartu</a></p>
00051       <p class="source">Get the source code <a href="http://github.com/javierbeaumont/izartu">on GitHub</a> or <a href="http://gitorious.org/izartu/izartu">on Gitorious</a></p>
00052       <p class="standard"><a href="http://validator.w3.org/check?uri=referer">XHTML 1.1</a> · <a href="http://jigsaw.w3.org/css-validator/check/referer">CSS 2.1</a></p>
00053     </div>
00054     <?php echo $benchmark->get(); ?>
00055   </body>
00056 </html>
 All Data Structures Files Functions Variables Enumerations