tningjs/sam-and-his-friends

View on GitHub
src/views/templates/layout/404.hbs

Summary

Maintainability
Test Coverage
<!DOCTYPE html>
<html>
    <head>
        <!-- Global site tag (gtag.js) - Google Analytics -->
        <script
            async
            src="https://www.googletagmanager.com/gtag/js?id=UA-135903447-3"
        ></script>
        <script>
            window.dataLayer = window.dataLayer || [];
            function gtag() {
                dataLayer.push(arguments);
            }
            gtag('js', new Date());

            gtag('config', 'UA-135903447-3');
        </script>
        <title>{{ siteTitle }}</title>
        <meta charset="utf-8" />
        <meta
            name="viewport"
            content="width=device-width, initial-scale=1, user-scalable=no"
        />
        <link rel="icon" type="image/png" href="/images/favicon/favicon.ico" />
        <link rel="apple-touch-icon" href="/images/favicon/apple-touch-icon.png">
        <link rel="manifest" href="/images/favicon/site.webmanifest" />
        <link rel="stylesheet" href="/assets/sass/404.css" />
    </head>
    <body class="bg-purple">
        {{{body}}}
    </body>
</html>