BloodMoonYTC

base html

Oct 24th, 2021 (edited)
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.49 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en" class="no-js">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width">
  6.     <title>Page Title - My Site</title> <!-- TODO: update page title -->
  7.     <script type="module">
  8.             document.documentElement.classList.remove('no-js');
  9.             document.documentElement.classList.add('js');
  10.     </script>
  11.     <meta name="description" content="Page Description"> <!-- TODO: update meta description -->
  12.     <meta property="og:title" content="Home - Page">  <!-- TODO: update og:title -->
  13.     <meta property="og:url" content="https://www.example.com/page"> <!-- TODO: update og:url -->
  14.     <meta property="og:description" content="OG Page Description">  <!-- TODO: update og:description -->
  15.     <meta property="og:image" content="/path/to/image">  <!-- TODO: og:image -->
  16.     <meta property="og:image:alt" content="OG Image Description"> <!-- TODO: update og:image:alt -->
  17.     <meta property="og:locale" content="en_US">
  18.     <meta property="og:type" content="website">
  19.     <meta name="twitter:card" content="large-image-twitter.jpg"> <!-- TODO: update twitter:cared -->
  20.     <link rel="canonical" href="https://www.example.com/page"> <!-- TODO: update canonical link -->
  21.     <link rel="icon" href="/favicon.ico">
  22.     <link rel="icon" href="/favicon.svg" type="image/svg+xml">
  23.     <link rel="apple-touch-icon" href="/apple-touch-icon.png">
  24.     <link rel="manifest" href="site.webmanifest"> <!-- TODO: update web app manifest file -->
  25.     <meta name="theme-color" content="#FF00FF"> <!-- TODO: update meta theme color -->
  26.     <link rel="stylesheet" href="/styles/css/styles.css">  <!-- TODO: Update styles -->
  27.     <link rel="stylesheet" href="/styles/css/print.css" media="print">
  28. </head>
  29. <body>
  30.     <!-- Content -->
  31.     <script src="js/app.js"></script> <!-- TODO: Update app entry point -->
  32.     <script src="js/vendor/modernizr-{{MODERNIZR_VERSION}}.min.js"></script> <!-- TODO: Add Modernizr js -->
  33.     <script src="/assets/js/xy-polyfill.js" nomodule></script>
  34.     <script src="/assets/js/script.js" type="module"></script>
  35.     <!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. -->
  36.     <script>
  37.         window.ga = function () { ga.q.push(arguments) }; ga.q = []; ga.l = +new Date;
  38.         ga('create', 'UA-XXXXX-Y', 'auto'); ga('set', 'anonymizeIp', true); ga('set', 'transport', 'beacon'); ga('send', 'pageview')
  39.     </script>
  40.     <script src="https://www.google-analytics.com/analytics.js" async></script>
  41. </body>
  42. </html>
Add Comment
Please, Sign In to add comment