dosage/.staticsite.py

20 lines
630 B
Python
Raw Permalink Normal View History

# SPDX-License-Identifier: MIT
2017-11-28 23:35:44 +00:00
SITE_NAME = "dosage"
SITE_SUB = "a comic downloader and archiver"
SITE_URL = 'https://dosage.rocks/'
2017-11-28 23:35:44 +00:00
SITE_AUTHOR = "Tobias Gruetzmacher"
SITE_LINKS = (
2020-01-12 23:36:46 +00:00
{'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'},
2019-12-31 14:58:52 +00:00
{'name': 'ChangeLog', 'icon': 'bug', 'url': '/CHANGELOG'},
2017-11-28 23:35:44 +00:00
)
SITE_ICONS = (
2020-01-12 23:36:46 +00:00
{'name': 'GitHub', 'icon': 'github',
'url': 'https://github.com/webcomics/dosage'},
2017-11-28 23:35:44 +00:00
)
THEME_PATHS = ['.']
2017-11-28 23:35:44 +00:00
THEME = "doc/.theme"