DEV Community

Discussion on: How would you make a fullstack app without a frontend framework?

Collapse
 
ajascha profile image
Arne

Assuming that the application is not going to consist of dozens of different views, here’s how I do it: my main elements consist of a base page (templates/base.html) partials (/templates/partials/_footer.html etc.). Base loads all these partials and has a placeholder for the view-specific contents. You might want to set up different base and partials, eg when logged users should see different things