404.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php get_header() ?>
  2. <!-- https://codex.wordpress.org/Custom_Headers -->
  3. <img class="img-responsive" src="<?php header_image(); ?>" height="<?php echo get_custom_header()->height; ?>" width="<?php echo get_custom_header()->width; ?>" alt="" />
  4. <div class="conteudo">
  5. <main>
  6. <section class="meio">
  7. <div class="container">
  8. <div class="row">
  9. <div class="noticias col-md-9">
  10. <header>
  11. <h1>Pagina não encontrada!</h1>
  12. <p>Infelizmente, a pagina que voce tentou acessar nao existe neste site!</p>
  13. </header>
  14. <div class="erro">
  15. <p>Que tal fazer uma pesquisa?</p>
  16. <?php get_search_form(); ?>
  17. <h2>Ultimos posts</h2>
  18. <p>Veja os nossos ultimos conteudos</p>
  19. <!-- https://codex.wordpress.org/Function_Reference/the_widget -->
  20. <?php the_widget('WP_Widget_Recent_Posts'); ?>
  21. </div>
  22. </div>
  23. </div>
  24. </div>
  25. </section>
  26. </main>
  27. </div>
  28. <?php get_footer() ?>