1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php get_header() ?>
- <!-- https://codex.wordpress.org/Custom_Headers -->
- <img class="img-responsive" src="<?php header_image(); ?>" height="<?php echo get_custom_header()->height; ?>" width="<?php echo get_custom_header()->width; ?>" alt="" />
- <div class="conteudo">
- <main>
-
- <section class="meio">
- <div class="container">
- <div class="row">
- <div class="noticias col-md-9">
- <header>
- <h1>Pagina não encontrada!</h1>
- <p>Infelizmente, a pagina que voce tentou acessar nao existe neste site!</p>
- </header>
- <div class="erro">
- <p>Que tal fazer uma pesquisa?</p>
- <?php get_search_form(); ?>
- <h2>Ultimos posts</h2>
- <p>Veja os nossos ultimos conteudos</p>
- <!-- https://codex.wordpress.org/Function_Reference/the_widget -->
- <?php the_widget('WP_Widget_Recent_Posts'); ?>
- </div>
- </div>
-
- </div>
- </div>
- </section>
- </main>
- </div>
- <?php get_footer() ?>
|