This page demonstrates the flexible URL handling of the tools service.
tools.liam.cat/example-filetools.liam.cat/example-file.htmlThe nginx configuration uses try_files to automatically append the .html extension when needed:
location / {
try_files $uri $uri.html $uri/ =404;
}
This means you can create HTML files and access them with cleaner URLs without the extension!