<head>
    <meta charset="utf-8">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <meta http-equiv="cache-control" content="no-cache" />
    <meta http-equiv="pragma" content="no-cache" />
    <link href="<?php echo Config::get('backoffice.favicon'); ?>" rel="shortcut icon">
    <title>Desigualdades</title>
    <link rel="profile" href="https://gmpg.org/xfn/11">
    <link rel="pingback" href="">

    <meta name="token" content="<?php echo csrf_token(); ?>">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    
    <?php if(isset($shareData)): ?>
        <?php foreach($shareData as $shareDataKey => $shareDataValue): ?>
            <meta property="og:<?php echo $shareDataKey; ?>" content="<?php echo e($shareDataValue); ?>" />
        <?php endforeach; ?>

        <?php if(isset($shareData['title'])): ?>
            <meta name="twitter:title" content="<?php echo htmlspecialchars($shareData['title']); ?>" />
        <?php endif; ?>
    <?php endif; ?>    
    

    <?php if(isset($metaData) && !empty($metaData)): ?>
        <?php if(isset($metaData->meta_keywords) && $metaData->meta_keywords != ''): ?>
            <meta name="keywords" content="<?php echo htmlspecialchars($metaData->meta_keywords); ?>">
        <?php endif; ?>

        <?php if(isset($metaData->meta_description) && $metaData->meta_description != ''): ?>
            <meta name="description" content="<?php echo htmlspecialchars($metaData->meta_description); ?>">
        <?php endif; ?>
    <?php endif; ?>

    <!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
    <script src="https://code.jquery.com/jquery-2.2.0.min.js"></script>
    <!--[if lt IE 9]>
    <script src="<?php echo Config::get('path.frontend.js'); ?>/polyfill/html5-shiv.js"></script>
    <![endif]-->
    <link href='https://fonts.googleapis.com/css?family=PT+Sans' rel='stylesheet' type='text/css'>
    <link href="<?php echo Config::get('path.frontend.css'); ?>/styles.css?v=<?php echo Config::get('app.cssVersion'); ?>" rel="stylesheet" type="text/css" media="screen">
</head>