| Server IP : 217.160.0.251 / Your IP : 216.73.216.183 Web Server : Apache System : Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux User : u94981163 ( 8991765) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/15/d754908516/htdocs/wp-content/themes/__est-project/ |
Upload File : |
<?php
/**
* The template Name: Home
*
* This is the most generic template file in a WordPress theme and one
* of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query,
* e.g., it puts together the home page when no home.php file exists.
*
* @link http://codex.wordpress.org/Template_Hierarchy
*/
?>
<!DOCTYPE html>
<html class="nomargin" <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php
$favicon = est_project_setting( 'logo_favicon' );?>
<link rel="shortcut icon"
href="<?php echo ! empty( $favicon ) ? wp_get_attachment_image_url( $favicon,
'original' ) : ES_PROJECT_URL . 'assets/images/favicon.ico'; ?>">
<?php wp_head(); ?>
</head>
<?php $header_theme = !empty( est_project_setting( 'color_header_theme' ) ) ? est_project_setting( 'color_header_theme' ) : 'header_white';?>
<body <?php body_class($header_theme); ?>>
<?php get_header(); ?>
<main class="siteWidth">
<?php while ( have_posts() ) : the_post(); ?>
<div class="post-single__content">
<?php the_content(); ?>
</div>
<?php endwhile; // End of the loop.?>
<?php get_footer();