rpicms

A CMS for the Raspberry Pi
git clone git://archive.git.mtrnord.blog/RpicmsTeam/rpicms.git
Log | Files | Refs | README | LICENSE

index.php (1628B)


      1 <?php
      2 /*
      3 UserCake Version: 2.0.2
      4 http://usercake.com
      5 */
      6 
      7 require_once("models/config.php");
      8 if (!securePage($_SERVER['PHP_SELF'])){die();}
      9 require_once("models/header.php");
     10 
     11 echo "
     12 <body>
     13 <div id='wrapper'>
     14 <div id='top'><div id='logo'></div></div>
     15 <div id='content'>
     16 <h1>UserCake</h1>
     17 <h2>2.00</h2>
     18 <div id='left-nav'>";
     19 include("left-nav.php");
     20 
     21 echo "
     22 </div>
     23 <div id='main'>
     24 <p>Thank you for downloading UserCake. 100% Free and Opensource.</p>
     25 <p>Copyright (c) 2009-2012</p>
     26 <p>Permission is hereby granted, free of charge, to any person obtaining a copy
     27 of this software and associated documentation files (the 'Software'), to deal
     28 in the Software without restriction, including without limitation the rights
     29 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
     30 copies of the Software, and to permit persons to whom the Software is
     31 furnished to do so, subject to the following conditions:</p>
     32 <p>The above copyright notice and this permission notice shall be included in
     33 all copies or substantial portions of the Software.</p>
     34 <p>THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     35 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     36 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
     37 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
     38 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
     39 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
     40 THE SOFTWARE.</p>
     41 </div>
     42 <div id='bottom'></div>
     43 </div>
     44 </body>
     45 </html>";
     46 
     47 ?>