glaciers-in-archives/snowman

View on GitHub
examples/wikidata/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 }}
        {{ include "includes/footer.html" . }}
    </body>
</html>
{{ end }}