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-10-16 14:16:08 +00:00
|
|
|
$url = _DEV_MODE ? 'http://localhost:8080' : '.';
|
|
|
|
|
2016-10-11 14:45:10 +00:00
|
|
|
if (_DEV_MODE)
|
|
|
|
$this->includeJs ("$url/webpack-dev-server.js");
|
2016-10-16 14:16:08 +00:00
|
|
|
|
|
|
|
$this->includeJs ("$url/build/hedera-web.js");
|
2016-07-22 20:00:27 +00:00
|
|
|
|