glaciers-in-archives/snowman

View on GitHub
examples/nested-lists-with-single-query/templates/layouts/base.html

Summary

Maintainability
Test Coverage
{{ define "base" }}
<!DOCTYPE html>
<html lang="en">
    <head>
        <title>{{ block "title" . }}{{ end }}</title>
        <link rel="stylesheet" href="/styles/basic.css">
    </head>
    <body>
        {{ block "content" . }}{{ end }}
    </body>
</html>
{{ end }}