<?php global $parsa_opt; ?>
<!doctype html>
<html <?php language_attributes(); ?> >
<head>
    <meta charset="<?php bloginfo('charset'); ?>">
    <?php if($parsa_opt['fav_icon']['url']) { ?>
          <link rel="icon" type="image/png" href="<?php echo $parsa_opt['fav_icon']['url']; ?>">
      <?php } else { ?>
      <link rel="icon" href="<?php echo get_template_directory_uri().'/img/favicon.jpg'; ?>"
      <?php } ?>
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <?php get_header(); ?>
    <script>
    var $ = jQuery;
    </script>
</head>
<body>


            	<div class="container">
							<?php
								while ( have_posts() ) :
									the_post();
									the_content();
								endwhile;
							?>
              	</div>

<?php get_footer(); ?>
</body>
</html>
