<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="HandheldFriendly" content="true" />
<base href="<?php echo \NG\Uri::baseUrl(); ?>" />
<?php
$title = (isset($this->title) and !empty($this->title)) ? $this->title : $this->translation['sitename'];
$description = (isset($this->metaDescription) and !empty($this->metaDescription)) ? $this->metaDescription : $this->translation['defaultMetaDescription'];
$keywords = (isset($this->metaKeywords) and !empty($this->metaKeywords)) ? $this->metaKeywords : $this->translation['defaultMetaKeywords'];
?>
<title><?php echo $title; ?></title>
<meta name="description" content="<?php echo $description; ?>">
<meta name="keywords" content="<?php echo $keywords; ?>">
<?php
if (isset($this->og) and is_array($this->og)):
foreach ($this->og as $type => $og):
echo '<meta property="og:' . $type . '" content="' . $og . '"/>';
endforeach;
endif;
if (isset($this->canonical) and !empty($this->canonical)):
echo '<link rel="canonical" href="'.$this->canonical.'" />';
echo '<link rel="alternate" hreflang="'.\NG\Registry::get("requestedLanuage").'" href="'.$this->canonical.'" />';
endif;
?>
<link rel="shortcut icon" href="favicon.ico">
<?php
// DEVELOPMENT VERSION //
/*
<link rel="stylesheet" href="Assets/css/bootstrap.min.css">
<link rel="stylesheet" href="Assets/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="Assets/css/zoombox.css">
<link rel="stylesheet" href="Assets/css/style.css">
*/
?>
<link rel="stylesheet" href="Assets/css/app.min.css">
<script>var baseURL = "<?php echo \NG\Uri::baseUrl(); ?>"; var requestedLanguage = "<?php echo \NG\Registry::get("requestedLanguage");?>";
<?php if(isset($this->objects["settings"]["fb:app_id"]) and is_numeric($this->objects["settings"]["fb:app_id"])): ?>
var FB_APP_ID = '<?php echo $this->objects["settings"]["fb:app_id"];?>';
<?php endif; ?>
var Number_Of_Profile_Movies = <?php echo $this->objects["settings"]["Number_Of_Profile_Movies"]; ?>;
var channelUrl ='<?php echo \NG\Uri::baseUrl(); ?>channel.php';
var loadmoretext = "<?php echo $this->translation['load_more']; ?>";
var noResults = "<?php echo $this->translation['noResults']; ?>";
<?php if(isset($this->movie['id']) and is_numeric($this->movie['id'])):?>
var mid = '<?php echo $this->movie['id'];?>';
<?php endif; ?>
</script>
<script src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script>
<!--[if lte IE 7]>
<script src="Assets/js/lte-ie7.js">
</script><![endif]-->
<meta name="msvalidate.01" content="D401D44E834189A55DF47F3CEA5557D8" />
</head>