36 lines
871 B
Python
36 lines
871 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*- #
|
|
from __future__ import unicode_literals
|
|
|
|
AUTHOR = u'Corey Richardson'
|
|
SITENAME = u"This Week in Rust"
|
|
SITEURL = 'http://this-week-in-rust.org'
|
|
|
|
THEME = 'pelican-elegant-1.3'
|
|
|
|
TIMEZONE = 'America/New_York'
|
|
|
|
DEFAULT_LANG = u'en'
|
|
|
|
FEED_DOMAIN = SITEURL
|
|
FEED_ALL_ATOM = 'atom.xml'
|
|
CATEGORY_FEED_ATOM = 'categories/%s/atom.xml'
|
|
|
|
DEFAULT_PAGINATION = 10
|
|
|
|
ARTICLE_URL = 'blog/{date:%Y}/{date:%m}/{date:%d}/{slug}/'
|
|
ARTICLE_SAVE_AS = 'blog/{date:%Y}/{date:%m}/{date:%d}/{slug}/index.html'
|
|
|
|
ARCHIVES_SAVE_AS = 'blog/archives/index.html'
|
|
|
|
CATEGORY_URL = 'categories/{slug}/'
|
|
CATEGORY_SAVE_AS = 'categories/{slug}/index.html'
|
|
|
|
LANDING_PAGE_ABOUT = {
|
|
"title": "Cataloging the Rust community's awesomeness",
|
|
"details": """
|
|
A weekly newsletter about Rust and the Rust community, with bonus content
|
|
scattered about.
|
|
"""
|
|
}
|