hedera-web/pages/main/head.php

24 lines
519 B
PHP
Raw Normal View History

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-09-27 19:31:46 +00:00
if (DEBUG_MODE)
{
$this->includeJs ('http://localhost:8080/webpack-dev-server.js');
$this->includeJs ('http://localhost:8080/build/hedera-web.js');
}
else
$this->includeJs ('build/hedera-web.js');
2016-07-22 20:00:27 +00:00
?>