14 lines
240 B
PHP
Executable File
14 lines
240 B
PHP
Executable File
<?php
|
|
global $_WORDS;
|
|
?>
|
|
|
|
<div class='page_subtitle'><?php echo $_WORDS['welcomemsg']; ?></div>
|
|
<div class='page_content'>
|
|
<?php
|
|
$page = $_DOC_ROOT."/data/pages/{$_LANG}_home.txt";
|
|
|
|
if(file_exists($page)) {
|
|
include($page);
|
|
}
|
|
?>
|
|
</div>
|