Created
July 2, 2020 12:27
-
-
Save bymathias/b7c7232269360b6ddbb857705ff52b1b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html class="no-js is-layout-bare" lang=""> | |
| <head> | |
| <meta charset="utf-8"> | |
| <!-- <title>Home | <%= htmlWebpackPlugin.options.TITLE %></title> --> | |
| <title>Home | Cactus Boilerplate</title> | |
| <meta name="description" content=""> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <meta property="og:title" content=""> | |
| <meta property="og:type" content=""> | |
| <meta property="og:url" content=""> | |
| <meta property="og:image" content=""> | |
| <link rel="manifest" href="site.webmanifest"> | |
| <link rel="apple-touch-icon" href="icon.png"> | |
| <!-- Place favicon.ico in the root directory --> | |
| <% for (let css of htmlWebpackPlugin.files.css) { %> | |
| <link rel="stylesheet" href="<%= css %>"> | |
| <% } %> | |
| <meta name="theme-color" content="#fafafa"> | |
| </head> | |
| <body> | |
| <nav class="navbar has-shadow"> | |
| <div class="container"> | |
| <div class="navbar-brand"> | |
| <a class="navbar-item has-text-weight-bold" href="/"> | |
| Cactus Boilerplate | |
| </a> | |
| <span class="navbar-burger burger" data-target="navbarMenuHeroA"> | |
| <span></span> | |
| <span></span> | |
| <span></span> | |
| </span> | |
| </div> | |
| <div class="navbar-end"> | |
| <a class="navbar-item" href="/">Services</a> | |
| <a class="navbar-item" href="/">About</a> | |
| <span class="navbar-item buttons"> | |
| <a class="button is-info" href="/"> | |
| <span class="icon"> | |
| <i class="fas fa-at"></i> | |
| </span> | |
| <span>Contact</span> | |
| </a> | |
| </span> | |
| </div> | |
| </div> | |
| </nav> | |
| <div id="wrapper"> | |
| <div class="container"> | |
| <p>lorem ipsum</p> | |
| </div> | |
| </div> | |
| <footer class="footer"> | |
| <div class="container"> | |
| <p>footer content goes here..</p> | |
| </div> | |
| </footer> | |
| <% for (let js of htmlWebpackPlugin.files.js) { %> | |
| <script src="<%= js %>"></script> | |
| <% } %> | |
| <!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. --> | |
| <script> | |
| window.ga = function () { ga.q.push(arguments) }; ga.q = []; ga.l = +new Date; | |
| ga('create', 'UA-XXXXX-Y', 'auto'); ga('set', 'anonymizeIp', true); ga('set', 'transport', 'beacon'); ga('send', 'pageview') | |
| </script> | |
| <script src="https://www.google-analytics.com/analytics.js" async></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment