https://github.com/devidw/pelican-theme-darksome
Darksome theme for Pelican Static Site Generator
https://github.com/devidw/pelican-theme-darksome
dark dark-mode dark-theme darkmode pelican pelican-4 pelican-blog pelican-site pelican-static-site-generator pelican-theme static-site-generator theme theme-development theme-ui web web-development website website-development
Last synced: 3 months ago
JSON representation
Darksome theme for Pelican Static Site Generator
- Host: GitHub
- URL: https://github.com/devidw/pelican-theme-darksome
- Owner: devidw
- License: mit
- Created: 2021-01-30T08:49:12.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-28T19:02:22.000Z (over 3 years ago)
- Last Synced: 2024-10-18T21:04:37.143Z (8 months ago)
- Topics: dark, dark-mode, dark-theme, darkmode, pelican, pelican-4, pelican-blog, pelican-site, pelican-static-site-generator, pelican-theme, static-site-generator, theme, theme-development, theme-ui, web, web-development, website, website-development
- Language: HTML
- Homepage:
- Size: 3.46 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
Awesome Lists containing this project
README
= Pelican Theme Darksome
//:toc:
//:toc-placement!://See a https://david🐺.to[live example] of the theme in action.
image::screenshot.png[screenshot]
//toc::[]
== Settings
Available settings for `pelicanconf.py`:[source, python]
----
"""theme specific settings below 👇"""from datetime import date
CANONICALURLS = (
'https://www.davidwolf.dev',
'https://www.david🐺.to',
)"""not used on index"""
TITLE_SEPARATOR = '—' # Title {{ TITLE_SEPARATOR }} Site Name"""
decide which cards should be displayed on listing pages
available: 'categories', 'tags', 'authors'
"""
# SIDEBAR_CARDS = ('categories', 'tags', 'authors')
SIDEBAR_CARDS = ('tags')FOOTERTEXT = 'Copyright © 12019 - {0}'.format(date.today().year + 10000) # human era
"""links displayed in page footer"""
FOOTERITEMS = (
('legal', 'legal/'), # title, link (SITEURL will be added automatically)
('privacy', 'privacy/'),
)MEDIA = {
'logo': 'media/images/logo.svg',
'favicon': 'media/images/favicon.svg',
'background': 'media/images/background.webp', # on home
}"""used wherever articles are listed"""
TRANSLATIONS = {
'en': {
'flag': '🇬🇧'
},
'de': {
'flag': '🇩🇪'
},
}
----== Frontmatter
Available frontmatter options in content files:[source, asciidoc]
----
//
// article previews on list pages
:description: description//
:noindex: true// seo JSON-LD
:jsonld:
----// == Donate
// The Darksome theme is completely open source and 100% free. If you like it, a small donation is very welcome. 🤗// image:https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-1.svg[Buy me a coffee, link="https://buymeacoffee.com/dwolf"]