jamstack-ish copy site to server HTML

hi
I would like to develop a site in Django. I would then like iterate over all the pages to generate the html and deploy that rather than serving directly from the Django website.

I have found django-distill.

Can anybody else tell me of any other methods of doing this?

You could try using wget to clone your site. (This assumes you know that every page can be reached from some “root” url, or that you can produce a list of all root urls necessary to clone the site.)

Hi Ken

yes I can find every URL no problem, I might use that thanks for the solution!

Red