gitsnitch 0.4.6

Lints your Git commit history against a declarative ruleset
<!doctype html>
<html lang="en">
    <head>
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <title>
            {% if page.title %}{{ page.title }} | {% endif %}{{ site.title }}
        </title>
        <meta name="description" content="{{ site.description }}" />
        <link
            rel="stylesheet"
            href="{{ '/assets/css/site.css' | relative_url }}"
        />
    </head>
    <body>
        <header class="site-header">
            <div class="container">
                <a class="brand" href="{{ '/' | relative_url }}"
                    >{{ site.title }}</a
                >
            </div>
        </header>

        <main class="container content" aria-label="Content">
            {{ content }}
        </main>

        <footer class="site-footer">
            <div class="container">
                <p>Built with Jekyll. Powered by policy signals.</p>
            </div>
        </footer>
        <script>
            document.addEventListener("keydown", function (e) {
                if (e.key === "Escape" && location.hash) {
                    history.replaceState(
                        null,
                        "",
                        location.pathname + location.search,
                    );
                }
            });
        </script>
    </body>
</html>