31 lines
693 B
PHP
31 lines
693 B
PHP
<!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">
|