forked from verdnatura/hedera-web
20 lines
425 B
PHP
Executable File
20 lines
425 B
PHP
Executable File
<?php
|
|
|
|
use Vn\Hedera\Web;
|
|
use Vn\Hedera\Js;
|
|
|
|
if ($result = Web::$sysConn->query ('SELECT name, content FROM metatag'))
|
|
{
|
|
echo '<meta name="content-language" content="'.$_SESSION['lang'].'"/>'."\n\t\t";
|
|
|
|
while ($row = $result->fetch_assoc ())
|
|
echo '<meta name="'.$row['name'].'" content="'.$row['content'].'"/>'."\n\t\t";
|
|
|
|
$result->free ();
|
|
}
|
|
|
|
Js::includeFile ('js/vn/vn.js');
|
|
Js::includeFile ('pages/main/main.js');
|
|
|
|
?>
|