Rename the AUR software to aurweb
[aur.git] / web / template / template.phps
blob4f8117c8f18b36edc8a45f56004fef0cf93d97b0
1 <?php
3 # This template shows how a front page script is commonly coded.
5 set_include_path(get_include_path() . PATH_SEPARATOR . '../lib');
7 include("aur.inc.php");     # access AUR common functions
8 set_lang();                 # this sets up the visitor's language
9 check_sid();                # see if they're still logged in
10 html_header();              # print out the HTML header
13 # Any text you print out to the visitor, use the __() function
14 # for i18n support. See web/lib/translator.inc.php for more info.
16 print __("Hi, this is worth reading!")."<br />\n";
19 html_footer(AURWEB_VERSION);