Assets
Assets are any static files that Tota doesn't need to process. This includes images, CSS and JavaScript files.
Directory
The entire assets
directory is copied to the public
directory when Tota builds your site.
So, if you had an image called party-parrot.gif
in your assets directory,
you can easily reference the file in your pages and templates:
<img src="/assets/party-parrot.gif" alt="dancing parrot" />
The assets directory location can be changed in the directory configuration.
TOTA_ASSETS_DIRECTORY="static"