dosage/.staticsite.py
Tobias Gruetzmacher 27d28b8eef Update file headers
The default encoding for source files is UTF-8 since Python 3, so we can
drop all encoding headers. While we are at it, just replace them with
SPDX headers.
2020-04-18 13:45:44 +02:00

18 lines
575 B
Python

# SPDX-License-Identifier: MIT
SITE_NAME = "dosage"
SITE_SUB = "a comic downloader and archiver"
SITE_AUTHOR = "Tobias Gruetzmacher"
SITE_LINKS = (
{'name': 'Downloads', 'icon': 'download',
'url': 'https://github.com/webcomics/dosage/releases/latest'},
{'name': 'Report Issue', 'icon': 'bug',
'url': 'https://github.com/webcomics/dosage/issues/new'},
{'name': 'ChangeLog', 'icon': 'bug', 'url': '/CHANGELOG'},
)
SITE_ICONS = (
{'name': 'GitHub', 'icon': 'github',
'url': 'https://github.com/webcomics/dosage'},
)
THEME = "doc/.theme"