Concept Flow - Template inheritance with extends
Base Template
Defines blocks
Child Template
Uses extends to inherit base
Overrides blocks
Render final HTML combining base + child
The base template defines placeholders called blocks. The child template extends the base and fills in those blocks. Rendering combines both templates.