This repository has been archived by the owner on Jul 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.php
executable file
·61 lines (40 loc) · 1.81 KB
/
base.php
1
<!doctype html><!--[if IE 7]><html <?php language_attributes(); ?> class="lt-ie9 lt-ie8 no-js loading" > <![endif]--><!--[if IE 8]><html <?php language_attributes(); ?> class="lt-ie9 no-js loading" > <![endif]--><!--[if gt IE 8]><!--><html <?php language_attributes(); ?> class="no-js loading"><!--<![endif]--> <head> <meta charset="<?php bloginfo( 'charset' ); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <link rel="profile" href="http://gmpg.org/xfn/11"> <?php if ( is_singular() && pings_open( get_queried_object() ) ) : ?> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"> <?php endif; ?> <link href="https://fonts.googleapis.com/css?family=Roboto:300,400,700,900,900i" rel="stylesheet"> <?php wp_head(); ?> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body <?php body_class() ?> > <!--[if lt IE 9]> <div class="alert alert-warning"><p> <?php _e('You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.', MONK_LANG); ?> </p></div> <![endif]--> <div id="page" > <?php /** * Load Main Component */ do_action( "get_template_part_" . get_template_parts()[0], get_template_slug() ); locate_template(get_the_template() . '.php', true, true) || load_template(get_template_path()); ?> </div> </body></html><?php /** * Load in footer scripts */wp_footer();