head.php 1.8 KB

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