You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Improved static site generation API - better parameters are used.
* Files in the root of `assets/` (or the asset directory) now get copied over to the output.
* Much more documentation.
Project layout and assets follow a standard structure.
* Project layout is now::
my_repo/
├── project/ <--------- input
│ ├── assets/
│ │ ├── css/
│ │ ├── js/
│ │ └── img/
│ └── templates/
│ ├── base.html
│ ├── index.html
│ └── about.html
└── www/ <---------- output (generated)
├── index.html
├── about/
│ └── index.html
├── css/
├── js/
└── img/
* Assets are copied over to `www/` during site generation.
* If the `www/` directory was previously created, it prompts the user and then
deletes it before site regeneration.
* Templates starting with `base` are not generated as individual pages. They
are meant to be extended in other templates.
* Graceful shutdown/restart of dev server.
* Required input and output dir arguments.
* Optional port argument.
* Improved server start/stop messages.
* Major internal refactor.