Converted all short tags to full tags
[aur-xilon.git] / web / html / template.php
blob175ba0b43d760b49414aa62ff7b005b501528041
1 <?php
3 set_include_path(get_include_path() . PATH_SEPARATOR . '../lib' . PATH_SEPARATOR . '../lang');
5 include("aur.inc"); # access AUR common functions
6 include("template_po.inc"); # use some form of this for i18n support
7 set_lang(); # this sets up the visitor's language
8 check_sid(); # see if they're still logged in
9 html_header(); # print out the HTML header
12 # Any text you print out to the visitor, use the __() function
13 # for i18n support. See 'testpo.php' for more details.
15 print __("Hi, this is worth reading!")."<br />\n";
18 html_footer("\$Id$"); # Use the $Id$ keyword
19 # NOTE: when checking in a new file, use
20 # 'svn propset svn:keywords "Id" filename.php'
21 # to tell svn to expand the "Id" keyword.
23 # vim: ts=2 sw=2 et ft=php