diff options
Diffstat (limited to 'scripts/bupa')
-rwxr-xr-x | scripts/bupa | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/bupa b/scripts/bupa index e1d57cf..ff8d5d1 100755 --- a/scripts/bupa +++ b/scripts/bupa @@ -5,7 +5,7 @@ Options: -h --help Show this screen. """ from jinja2 import Environment, FileSystemLoader -import glob, yaml, docopt +import glob, yaml, docopt, datetime from docutils import core from pyatom import AtomFeed @@ -56,7 +56,10 @@ def build_journal(env): subtitle="The lost journal of Kyrias", feed_url="https://theos.kyriasis.com/~kyrias/journal.xml", url="https://theos.kyriasis.com/~kyrias/journal.html", - author="Johannes Löthberg", + author={'name': 'Johannes Löthberg', + 'uri': 'https://theos.kyriasis.com/~kyrias/about.html'}, + updated=datetime.datetime.utcnow(), + generator=('bupa', '', '0.0.1') ) entries = [] |