Files
CS1534CA3/base.html
Ben Soroos 929b14104b 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-12 11:55:48 +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>