Add abbrlink to Hugo

You will have to set the URL of each page when creating the page with hugo new. Add this to your archetype template (archetypes/default.md):

url ='{{ now.UnixNano | crypto.FNV32a }}'

This will set the URL to something like:
https://example.org/1007519435/

Or you could use crypto.SHA256 and use the first seven or eight characters, etc.

By using the time created, we can change the title or path and the permalink will not change.