What is the best way to include gpg public keys on a website, which is generated by the Nikola website generator?
Edit: After 7 months I think the ideal solution makes use of WKD
As a default, all files within the files/
folder will be copied 1:1 into the output files. So if you're using the default config: to have your public key on your page, you can simply store it in files/key.txt
and it will be available as https://yourpage.com/key.txt
.
In the conf.py
you can find the following:
# One or more folders containing files to be copied as-is into the output.
# The format is a dictionary of {source: relative destination}.
# Default is:
# FILES_FOLDERS = {'files': ''}
# Which means copy 'files' into 'output'```