diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-08-04 07:43:21 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-08-04 07:43:21 +0100 |
commit | 1a2da48e1c9deb7f02ab9ccdca353ab389763d24 (patch) | |
tree | bab1d163970b4957b586d1eaa240ded36a082412 /tools | |
parent | 1bf87aaa088d975e6272f3e1a9722bf722b910e5 (diff) | |
download | spacebeans-1a2da48e1c9deb7f02ab9ccdca353ab389763d24.tar.gz spacebeans-1a2da48e1c9deb7f02ab9ccdca353ab389763d24.zip |
Include download link.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/atom.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/atom.py b/tools/atom.py index c3b3da4..7619974 100755 --- a/tools/atom.py +++ b/tools/atom.py @@ -49,11 +49,13 @@ def to_atom(post): <content type="xhtml"> <div xmlns="http://www.w3.org/1999/xhtml"> <pre>{body}</pre> + <p>Download available at <a href="{download}">SpaceBeans website</a>.</p> </div> </content> </entry>\n""".format( title="Released SpaceBeans " + post["version"], url=base_url + "#" + post["version"], + download=base_url + "#download", updated_on=datetime.combine( post["updated_on"], datetime.min.time() ).isoformat(), |