Tooling:
nix/direnv to ensure dependencies are present
jinja-based templating to avoid duplication of common sections of pages
(header and footer, primarily)
auto-rebuilding server for rapid iteration
11 lines
163 B
HTML
11 lines
163 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>{% block title %}{% endblock title %}</title>
|
|
</head>
|
|
<body>
|
|
<nav></nav>
|
|
{% block main %}{% endblock main %}
|
|
</body>
|
|
</html>
|