2016-07-22 20:00:27 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Vn\Lib\Locale;
|
|
|
|
|
|
|
|
echo '<meta name="content-language" content="'. Locale::get () .'"/>'."\n\t\t";
|
|
|
|
|
|
|
|
if ($result = $db->query ('SELECT name, content FROM metatag'))
|
|
|
|
{
|
|
|
|
while ($row = $result->fetch_assoc ())
|
2016-08-31 11:53:46 +00:00
|
|
|
echo "<meta name=\"{$row['name']}\" content=\"{$row['content']}\"/>\n\t\t";
|
2016-07-22 20:00:27 +00:00
|
|
|
|
|
|
|
$result->free ();
|
|
|
|
}
|
|
|
|
|
2016-11-14 09:47:39 +00:00
|
|
|
$url = _DEV_MODE ? "http://{$_SERVER['SERVER_NAME']}:8080/" : '';
|
|
|
|
$this->includeJs ("{$url}build/hedera-web.js");
|
2016-07-22 20:00:27 +00:00
|
|
|
|