Parcourir la source

Split header.php in two pieces

- head for HTML header
- navbar for bootstrop navbar
DricomDragon il y a 5 ans
Parent
commit
5d9bd044e9
2 fichiers modifiés avec 16 ajouts et 20 suppressions
  1. 16 0
      web/include/head.php
  2. 0 20
      web/include/header.php

+ 16 - 0
web/include/head.php

@@ -0,0 +1,16 @@
+<head>
+    <meta charset="utf-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+
+    <!-- Page description -->
+    <meta name="description" content="The official website of Jovian Hersemeule.">
+    <meta name="author" content="Jovian Hersemeule">
+    <meta property="og:image" content="images/home_picture_v1.jpg">
+
+    <!-- Style sheet -->
+    <link href="../include/css/bootstrap.css" rel="stylesheet">
+    <link href="../include/css/custom/main.css" rel="stylesheet">
+    <link href="../include/css/custom/pagination.css" rel="stylesheet">
+
+    <title><?php echo $title; ?> - Jovian Hersemeule</title>
+</head>

+ 0 - 20
web/include/header.php

@@ -1,23 +1,3 @@
-<!DOCTYPE html>
-<html lang="fr">
-<head>
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-
-    <!-- Page description -->
-    <meta name="description" content="The official website of Jovian Hersemeule.">
-    <meta name="author" content="Jovian Hersemeule">
-    <meta property="og:image" content="images/home_picture_v1.jpg">
-
-    <!-- Style sheet -->
-    <link href="/css/bootstrap.css" rel="stylesheet">
-    <link href="/css/custom/main.css" rel="stylesheet">
-    <link href="/css/custom/pagination.css" rel="stylesheet">
-
-    <title><?php echo $title; ?> - Jovian Hersemeule</title>
-</head>
-<body>
-
 <!-- Navbar -->
 <nav class="navbar navbar-expand-md navbar-dark bg-success fixed-top">
     <a class="navbar-brand" href="/index.php">Jovian Hersemeule</a>