Skip to content

Instantly share code, notes, and snippets.

@pessjr
Created July 31, 2017 18:21
Show Gist options
  • Save pessjr/155b31ebbef09c8cb0ebc36ccd2cc49b to your computer and use it in GitHub Desktop.
Save pessjr/155b31ebbef09c8cb0ebc36ccd2cc49b to your computer and use it in GitHub Desktop.
<?php
use Roots\Sage\Setup;
use Roots\Sage\Wrapper;
use Roots\Sage\Extras;
?>
<!doctype html>
<html <?php language_attributes(); ?>>
<?php get_template_part('templates/head'); ?>
<body <?php body_class(); ?>>
<!--[if IE]>
<div class="alert alert-warning">
<?php _e('You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.', 'sage'); ?>
</div>
<![endif]-->
<?php
do_action('get_header');
get_template_part('templates/header');
// Essa faixa não deve ser exibida na busca, apenas no arquivo.
/*if ( is_archive() && ! is_search() ) {
get_template_part( 'templates/blocos/faixa-subtitulo-pagina-modalidade' );
}*/
?>
<main class="main">
<?php include Wrapper\template_path(); ?>
</main><!-- /.main -->
<?php
do_action('get_footer');
get_template_part('templates/footer');
wp_footer();
?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment