This is a Django static page.

I welcome you to view this static page. This is a fully client side rendered page.
The server side framework which is Django does not render the page on request. It has the rendered once during development, Then the static html file is stored in the static folder. The Nginx server then servers this static file.

This static file contains javascript that request for json data from a fastapi server and with that data the page is rendered on the client side. This should make the site very fast as Nginx is async by default and fastapi also read asyn might not need multiple gunicorn or uvicorn workers.