diff options
author | David Runge <dave@sleepmap.de> | 2022-01-30 15:13:28 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2022-01-30 15:13:28 +0100 |
commit | 955424c04070edfc40b4cfea1da89365c4b584ad (patch) | |
tree | 407df36d94248e9b97541e06e815dd1b75fb8bce | |
parent | 4b2df53177a3f5ad1ced1d210d85624846a25336 (diff) | |
download | sleepmap-955424c04070edfc40b4cfea1da89365c4b584ad.tar.gz sleepmap-955424c04070edfc40b4cfea1da89365c4b584ad.tar.bz2 sleepmap-955424c04070edfc40b4cfea1da89365c4b584ad.tar.xz sleepmap-955424c04070edfc40b4cfea1da89365c4b584ad.zip |
Add Arch Linux link to footer
conf.py:
Add link to developer page on Arch Linux to footer.
Format the footer string to be more easily extensible.
-rw-r--r-- | conf.py | 17 |
1 files changed, 11 insertions, 6 deletions
@@ -959,12 +959,17 @@ LICENSE = """ # A small copyright notice for the page footer (in HTML). # (translatable) -CONTENT_FOOTER = '<p>Contents © {date} <a href="mailto:{email}">{author}</a> {license} </p> \ -<p><a href="https://www.discogs.com/user/dvzrv" target="_blank" >Discogs</a> | \ -<a href="https://www.flattr.com/profile/davezerave" target="_blank" >Flattr</a> | \ -<a href="https://www.github.com/dvzrv" target="_blank" >GitHub</a> | \ -<a href="https://www.gitlab.com/dvzrv" target="_blank" >GitLab</a> | \ -<a href="https://www.twitter.com/dvzrv" target="_blank" >Twitter</a> </p>' +CONTENT_FOOTER = ( + '<p>Contents © {date} <a href="mailto:{email}">{author}</a> {license} </p>' + "<p>" + '<a href="https://archlinux.org/people/developers/#dvzrv" target="_blank" >Arch Linux</a> | ' + '<a href="https://www.discogs.com/user/dvzrv" target="_blank" >Discogs</a> | ' + '<a href="https://www.flattr.com/profile/davezerave" target="_blank" >Flattr</a> | ' + '<a href="https://www.github.com/dvzrv" target="_blank" >GitHub</a> | ' + '<a href="https://www.gitlab.com/dvzrv" target="_blank" >GitLab</a> | ' + '<a href="https://www.twitter.com/dvzrv" target="_blank" >Twitter</a>' + "</p>" +) # Things that will be passed to CONTENT_FOOTER.format(). This is done |