This repository has been archived on 2023-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
qdouze-wordpress-theme/header.php

35 lines
1.3 KiB
PHP
Raw Permalink Normal View History

2018-10-24 14:02:44 +02:00
<!DOCTYPE html>
2018-10-24 14:25:14 +02:00
<html <?php language_attributes(); ?>>
2018-10-24 14:13:40 +02:00
<head>
2018-10-24 14:25:14 +02:00
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?php bloginfo('name'); ?><?php wp_title(' - '); ?></title>
<meta name="description" content="<?php bloginfo('name'); echo " - "; bloginfo('description');?>" />
2018-10-24 14:25:58 +02:00
<?php if ( is_singular() && pings_open( get_queried_object() ) ) : ?>
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php endif; ?>
2018-10-24 14:25:14 +02:00
<?php wp_head(); ?>
2018-10-27 14:11:47 +02:00
<?php include(TEMPLATEPATH . '/components/opengraph.php'); ?>
2018-10-24 14:02:44 +02:00
<!-- mon icon -->
2018-10-24 14:13:40 +02:00
<link rel="shortcut icon" href="img/favicon.png">
2018-10-24 14:02:44 +02:00
<!-- framework utilisés -->
2018-10-24 14:13:40 +02:00
<link href="<?php echo get_template_directory_uri() . "/css/bootstrap.min.css"; ?>" rel="stylesheet"/>
<link href="<?php echo get_template_directory_uri() . "/css/fork-awesome.min.css"; ?>" rel="stylesheet"/>
<link href="<?php bloginfo('stylesheet_url'); ?>" rel="stylesheet"/>
</head>
<body>
<div id="wrapper" class="card">
<header>
<?php include(TEMPLATEPATH . '/components/navbar-pages.php'); ?>
<?php include(TEMPLATEPATH . '/components/logo.php'); ?>
<?php include(TEMPLATEPATH . '/components/navbar-category.php'); ?>
</header>
<section class="container-fluid">
<div class="row">