|
- <!--[if IE_NEEDS_THIS]><![endif]-->
- <!DOCTYPE html>
- <!--[if lt IE 7]> <html class="no-js lt-ie10 lt-ie9 lt-ie8 lt-ie7" <?php language_attributes(); ?>> <![endif]-->
- <!--[if IE 7]> <html class="no-js lt-ie10 lt-ie9 lt-ie8 ie7" <?php language_attributes(); ?>> <![endif]-->
- <!--[if IE 8]> <html class="no-js lt-ie10 lt-ie9 ie8" <?php language_attributes(); ?>> <![endif]-->
- <!--[if IE 9]> <html class="no-js lt-ie10 ie9" <?php language_attributes(); ?>> <![endif]-->
- <!--[if gt IE 9]><!--> <html class="no-js" <?php language_attributes(); ?>> <!--<![endif]-->
- <head>
- <meta charset="<?php bloginfo('charset'); ?>" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5">
- <?php wp_head(); // For plugins ?>
- <meta name="description" content="<?php sandbox_the_page_description(); ?>">
- <!-- all countries as js array <script type="text/javascript" src="<?php echo esc_url(get_stylesheet_directory_uri()); ?>/js/allcountries.js"></script> -->
- <link rel="stylesheet" type="text/css" href="<?php echo esc_url(get_stylesheet_directory_uri()); ?>/css/normalize.css?v=1" />
- <link rel="stylesheet" type="text/css" href="<?php echo esc_url(get_stylesheet_directory_uri()); ?>/css/default.css?v=1" />
- <link rel="stylesheet" type="text/css" href="<?php echo esc_url(get_stylesheet_directory_uri()); ?>/css/style.css?v=38" />
- <link rel="stylesheet" media="print" type="text/css" href="<?php echo esc_url(get_stylesheet_directory_uri()); ?>/css/print.css" />
- <link rel="alternate" type="application/rss+xml" href="<?php echo esc_url(get_bloginfo('rss2_url')); ?>" title="<?php printf( __( '%s latest posts', 'sandbox' ), htmlspecialchars( get_bloginfo('name'), 1 ) ) ?>" />
- <link rel="profile" href="http://gmpg.org/xfn/11">
- <link rel="pingback" href="<?php echo esc_url(get_bloginfo( 'pingback_url' )); ?>">
- <meta property="og:title" content="<?php echo wp_strip_all_tags(wp_get_document_title()); ?>" />
- <meta property="og:type" content="<?php if ( is_single() ) { ?>article<?php } else { ?>Website<?php } ?>" />
- <meta property="og:url" content="<?php sandbox_the_current_URI(); ?>" />
- <meta property="og:image" content="<?php sandbox_the_page_thumbnail() ?>" />
- <meta property="og:description" content="<?php sandbox_the_page_description(); ?>" />
- <meta property="og:locale" content="<?php bloginfo('language'); ?>" />
- </head>
- <body <?php body_class(); ?>>
- <?php wp_body_open(); ?>
- <nav id="skip">
- <ul>
- <li><a href="#main-menu"><?php _e('Jump to Navigation', 'sandbox'); ?></a></li>
- <li><a href="#main"><?php _e('Jump to Content', 'sandbox'); ?></a></li>
- </ul>
- </nav>
-
- <!-- ______________________ HEADER _______________________ -->
- <header id="site-header" class="site-header site-container color-scheme-dark">
- <div class="inner">
-
- <<?php
- /*
- * @logo
- * @Site Name
- */
- if ( is_front_page() || is_home() ) { echo 'h1'; } else { echo 'h2'; } ?> id="site-name" class="site-name">
- <a id="site-logo" class="site-logo" rel="home" href="<?php echo esc_url(home_url()) ?>/" title="<?php
- echo htmlspecialchars(get_bloginfo('name')), ' - ', htmlspecialchars(get_bloginfo('description'));
- ?>"><img src="<?php echo esc_url(get_template_directory_uri()); ?>/img/socos-logo-dark.svg" alt="<?php
- echo htmlspecialchars(__('Logo', 'sandbox')), ' - ', htmlspecialchars(get_bloginfo('name')); ?>"/></a>
- </<?php if ( is_front_page() || is_home() ) { echo 'h1'; } else { echo 'h2'; } ?>>
-
- <?php
- /*
- * @Sidebar Header
- */
- get_sidebar('header'); ?>
-
- </div>
- </header><!-- header -->
-
- <?php
- /*
- * @Sidebar Menu
- */
- get_sidebar('menu'); ?>
-
- <?php
- /*
- * @Sidebar Highlight
- */
- get_sidebar('highlight'); ?>
-
- <main class="site-main site-container" id="main">
- <div class="inner">
|