Advertisement
Guest User

section-order

a guest
Nov 30th, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. <?php
  2. /**
  3. * The header for our theme
  4. *
  5. * This is the template that displays all of the <head> section and everything up until <div id="content">
  6. *
  7. * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
  8. *
  9. * @package security
  10. */
  11.  
  12. ?>
  13. <!doctype html>
  14. <html <?php language_attributes(); ?>>
  15. <head>
  16. <meta charset="<?php bloginfo( 'charset' ); ?>">
  17. <meta name="viewport" content="width=device-width, initial-scale=1">
  18. <link rel="profile" href="http://gmpg.org/xfn/11">
  19. <?php wp_head(); ?>
  20. </head>
  21.  
  22. <body <?php body_class(); ?>>
  23. <div id="page" class="site">
  24. <a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'adonis-pro' ); ?></a>
  25.  
  26. <header id="masthead" class="site-header">
  27. <div class="wrapper">
  28. <div id="site-header-main">
  29. <?php get_template_part( 'template-parts/navigation/navigation', 'primary' ); ?>
  30. </div><!-- #site-header-main -->
  31. </div><!-- .wrapper -->
  32. </header><!-- #masthead -->
  33.  
  34. <?php get_template_part( 'template-parts/header/header', 'media' ); ?>
  35.  
  36. <?php get_template_part( 'template-parts/featured-content/display', 'featured' ); ?>
  37.  
  38. <?php get_template_part( 'template-parts/portfolio/display', 'portfolio' ); ?>
  39.  
  40. <?php get_template_part( 'template-parts/services/display', 'services' ); ?>
  41.  
  42. <?php get_template_part( 'template-parts/logo-slider/display', 'logo-slider' ); ?>
  43.  
  44. <?php get_template_part( 'template-parts/skills/display', 'skills' ); ?>
  45.  
  46. <?php get_theme_mod( 'adonis_testimonial_position', 1 ) ? get_template_part( 'template-parts/testimonial/display', 'testimonial' ) : ''; ?>
  47.  
  48. <?php get_template_part( 'template-parts/hero-content/content', 'hero' ); ?>
  49.  
  50. <?php get_template_part( 'template-parts/stats/display', 'stats' ); ?>
  51.  
  52. <?php get_template_part( 'template-parts/slider/display', 'slider' ); ?>
  53.  
  54. <?php get_theme_mod( 'adonis_contact_position' ) ? get_template_part( 'template-parts/contact-info/display', 'contact-info' ) : ''; ?>
  55.  
  56. <?php get_template_part( 'template-parts/header/breadcrumb' ); ?>
  57.  
  58. <div id="content" class="site-content">
  59. <div class="wrapper">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement