theme and plugin sync

This commit is contained in:
2024-03-20 17:38:18 -04:00
commit 03e44e02f0
224 changed files with 56542 additions and 0 deletions

26
header.php Normal file
View File

@@ -0,0 +1,26 @@
<?php
/**
* Header template.
*
* @package ThemeStarter
*/
?>
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>" />
<meta content="width=device-width, initial-scale=1, viewport-fit=cover, maximum-scale=5, shrink-to-fit=no" name="viewport" />
<link href="<?php echo get_template_directory_uri(); ?>/icon.png" rel="icon" type="image/png" />
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<?php get_template_part('template-parts/header/navigation'); ?>
<main id="content-container">