Startpunkten

This commit is contained in:
2026-04-03 16:55:16 +02:00
commit 48c54530ab
26 changed files with 867 additions and 0 deletions

23
header.php Normal file
View File

@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<title><?php bloginfo ('name');?></title>
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="HandheldFriendly" content="true">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<header class="main">
<div class="container">
<div class="logo">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img src="<?php bloginfo('template_url') ?>/images/crille_logo.png" alt="Logo"></a>
</div>
<nav>
<?php wp_nav_menu (); ?>
</nav>
</div>
</header>