Files
CS1534CA3/base.html
bluepython508 d6ef3d511c Initial Setup
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
2024-03-05 09:42:02 +00:00

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>