Pelzini

This is the code documentation for the Pelzini project

source of /viewer/controllers/index.php

The home page of the viewer
  1. <?php
  2.  
  3. /*
  4. Copyright 2008 Josh Heidenreich
  5.  
  6. This file is part of Pelzini.
  7.  
  8. Pelzini is free software: you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation, either version 3 of the License, or
  11. (at your option) any later version.
  12.  
  13. Pelzini is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with Pelzini. If not, see <http://www.gnu.org/licenses/>.
  20. */
  21.  
  22. /**
  23.  * The home page of the viewer
  24.  *
  25.  * @package Viewer
  26.  * @author Josh Heidenreich
  27.  * @since 0.1
  28.  * @tag i18n-done
  29.  **/
  30. require_once 'head.php';
  31.  
  32. ?>
  33.  
  34.  
  35. <h2><?php echo $project['name']; ?></h2>
  36. <p><?php echo str (STR_INTRO_PARAGRAPH, 'project', $project['name']); ?></p>
  37.  
  38.  
  39.  
  40. <?php
  41. require_once 'foot.php';
  42. ?>
  43.