minimal header to be used to preview games
This commit is contained in:
parent
68769f1edc
commit
dd37070a34
31
header-minimal.php
Normal file
31
header-minimal.php
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html <?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 wp_head(); ?>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<?php
|
||||||
|
do_action('tailpress_site_before');
|
||||||
|
global $post;
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div id="page-<?php echo $post->post_name ?>" class="min-h-screen flex flex-col">
|
||||||
|
|
||||||
|
<?php do_action('tailpress_header'); ?>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<?php if (is_front_page()) { ?>
|
||||||
|
|
||||||
|
<?php } ?>
|
||||||
|
|
||||||
|
<?php do_action('tailpress_content_start'); ?>
|
||||||
|
|
||||||
|
<main id="content" class="site-content flex-grow">
|
||||||
Loading…
Reference in New Issue
Block a user