head.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <head>
  2. <meta charset="utf-8">
  3. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  4. <!-- Description variables -->
  5. <?php
  6. $shareImg = "/include/images/avatar-cartoon600.png";
  7. $author = "Jovian HERSEMEULE";
  8. $description = "Le site officiel de Jovian Hersemeule";
  9. ?>
  10. <!-- Generic description -->
  11. <meta name="description" content="<?php echo $description; ?>">
  12. <meta name="author" content="<?php echo $author; ?>">
  13. <!-- Google / Search Engine Tags -->
  14. <meta itemprop="name" content="<?php echo $author; ?>">
  15. <meta itemprop="description" content="<?php echo $description; ?>">
  16. <meta itemprop="image" content="<?php echo $shareImg; ?>">
  17. <!-- Facebook Meta Tags -->
  18. <meta property="og:url" content="https://www.jovian-hersemeule.eu">
  19. <meta property="og:type" content="website">
  20. <meta property="og:title" content="<?php echo $author; ?>">
  21. <meta property="og:description" content="<?php echo $description; ?>">
  22. <meta property="og:image" content="<?php echo $shareImg; ?>">
  23. <!-- Twitter Meta Tags -->
  24. <meta name="twitter:card" content="summary_large_image">
  25. <meta name="twitter:title" content="<?php echo $author; ?>">
  26. <meta name="twitter:description" content="<?php echo $description; ?>">
  27. <meta name="twitter:image" content="<?php echo $shareImg; ?>">
  28. <!-- Meta Tags Generated via http://heymeta.com -->
  29. <!-- Style sheet -->
  30. <link href="/include/css/bootstrap.css" rel="stylesheet">
  31. <link href="/include/css/custom/main.css" rel="stylesheet">
  32. <link href="/include/css/custom/pagination.css" rel="stylesheet">
  33. <title><?php echo $title; ?> - Jovian Hersemeule</title>
  34. </head>