first theme commit

This commit is contained in:
2024-05-03 01:55:19 -04:00
commit 3d9ef61176
153 changed files with 53926 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(); ?>/assets/images/logos/harplabs-icon.svg" rel="icon" type="image/png" />
<?php wp_head(); ?>
</head>
<body <?php body_class(''); ?>>
<?php wp_body_open(); ?>
<?php get_template_part('template-parts/header/default-navigation'); ?>
<main id="content-container">