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
6 lines
121 B
HTML
6 lines
121 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Home{% endblock %}
|
|
{% block main %}
|
|
<h1>Some body content</h1>
|
|
{% endblock %}
|