better display of description and time for a single photo
[photo-tags.git] / index.php
index 94f2b4a2bbe2d55024641fb9f73e534795504c40..05e34d1b7c37e7a6ad49d4c6eea7d49b67e14da5 100644 (file)
--- a/index.php
+++ b/index.php
@@ -1,4 +1,25 @@
 <?php
 <?php
+
+  /**
+    copyright 2012,2013 Arun Persaud <arun@nubati.net>
+
+    This file is part of photo-tags.
+
+    Photo-tags is free software: you can redistribute it and/or modify
+    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.
+
+    Photo-tags 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 Photo-tags.  If not, see <http://www.gnu.org/licenses/>.
+
+  **/
+
 /* parse ini -file */
 $iniarray=parse_ini_file("config.ini");
 $webbase=$iniarray["webbase"];
 /* parse ini -file */
 $iniarray=parse_ini_file("config.ini");
 $webbase=$iniarray["webbase"];
@@ -45,10 +66,11 @@ function autoversion($file)
 <!DOCTYPE html>
 <html>
 <head>
 <!DOCTYPE html>
 <html>
 <head>
+<meta charset="utf-8">
 <title><?php echo htmlspecialchars($title) ?></title>
 <script src = "<?php echo $webbase.autoversion("/js/d3.min.js")?>"></script>
 <title><?php echo htmlspecialchars($title) ?></title>
 <script src = "<?php echo $webbase.autoversion("/js/d3.min.js")?>"></script>
-<link rel="stylesheet" type="text/css" href="<?php echo $webbase.autoversion("/css/style.css")?>" />
 <link rel="stylesheet" type="text/css" href="<?php echo $webbase.autoversion("/css/bootstrap.min.css")?>" />
 <link rel="stylesheet" type="text/css" href="<?php echo $webbase.autoversion("/css/bootstrap.min.css")?>" />
+<link rel="stylesheet" type="text/css" href="<?php echo $webbase.autoversion("/css/style.css")?>" />
 </head>
 
 <body>
 </head>
 
 <body>
@@ -70,13 +92,16 @@ function autoversion($file)
 
 <div class="tagsearch">
 <form class="form-search" method="get" action="">
 
 <div class="tagsearch">
 <form class="form-search" method="get" action="">
- Search for tag: <input list="MyTags" id="MyTagsInput" type="text" value="" />
-  <datalist id="MyTags">
-  </datalist>
+  <p>
+    <label>Search for tag:</label> <input class="input-medium search-query" list="MyTags" id="MyTagsInput" type="text" value="" />
+    <datalist id="MyTags">
+    </datalist>
+    Current tags:<span id="currenttags"></span>
+    <a class="next btn btn-small btn-info" onclick="tagcloud()">tag cloud</a>
+    <a class="btn btn-small btn-success" href='<?php echo $webbase?>'>all</a>
+    <span id="pictags"></span>
+  </p>
 </form>
 </form>
-  Current tags:<span id="currenttags"></span>
-  <button class="next" type="button" onclick="tagcloud()">tag cloud</button>
-  <button class="all"  onclick="document.location.href='<?php echo $webbase?>'">all</button>
 </div>
 
 <div class="nextprev"> <ul></ul></div>
 </div>
 
 <div class="nextprev"> <ul></ul></div>
@@ -84,8 +109,8 @@ function autoversion($file)
 <div class="pics"><ul></ul> </div>
 
 <footer>
 <div class="pics"><ul></ul> </div>
 
 <footer>
-  This gallery belongs to <?php echo htmlspecialchars($admin) ?>.
-  <div class="copyright"> photo-tags: copyright 2011 Arun Persaud arun@nubati.net, code available at <a href="http://source.nubati.net/projects/photo-tags">source.nubati.net/projects/photo-tags</a></div>
+  <div class="pull-left">This gallery belongs to <?php echo htmlspecialchars($admin) ?>.</div>
+  <div class="copyright pull-right"> photo-tags: copyright 2011-2012 Arun Persaud arun@nubati.net,<br /> code available at <a href="http://source.nubati.net/projects/photo-tags">source.nubati.net/projects/photo-tags</a></div>
 </footer>
 
 
 </footer>