-
Notifications
You must be signed in to change notification settings - Fork 0
/
_config.py
47 lines (40 loc) · 1.98 KB
/
_config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# -*- coding: utf-8 -*-
site.url = "http://www.frompythonimportpodcast.com"
site.cdn_url = "http://cdn.frompythonimportpodcast.com"
blog = controllers.blog
blog.custom_index = False
blog.enabled = True
blog.path = ""
blog.name = "From Python Import Podcast"
blog.description = "a small-batch artisanal podcast for irreverent pythonistas"
blog.timezone = "US/Eastern"
blog.post_default_filters['md'] = blog.post_default_filters['markdown']
blog.post_excerpts.enabled = True
blog.post_excerpts.word_length = 0 # explicit excerpts only, please
blog.podcast.root = "/shows"
blog.podcast.summary = "From Python Import Podcast is a podcast about Python"
blog.podcast.subtitle = "a small-batch artisanal podcast for irreverent pythonistas"
blog.podcast.explicit = "yes" # valid values are "yes", "no", and "clean"
blog.podcast.image = "/static/content/fpip3d3-300x300.jpg"
blog.podcast.author = "Mike Pirnat, David Noyes, Benjamin W. Smith, David Stanek, Mike Crute, Chris Miller <[email protected]>"
blog.podcast.categories = ["Technology", ["Business", "Careers"], ["Education", "Training"]]
blog.podcast.keywords = "programming, python, software, development"
blog.podcast.itunes_link = "http://itunes.apple.com/us/podcast/from-python-import-podcast/id525611633"
blog.podcast.mp3_feed = "http://feeds.feedburner.com/FromPythonImportPodcastmp3"
blog.podcast.ogg_feed = "http://feeds.feedburner.com/FromPythonImportPodcastogg"
blog.podcast.full_feed = "http://feeds.feedburner.com/FromPythonImportPodcast"
blog.homepage.recent_posts = 3
blog.homepage.recent_shows = 3
blog.homepage.featured_posts = 3
blog.homepage.top_shows = 3
# social sharing config
blog.facebook.enabled = True
blog.googleplus.enabled = True
blog.pinterest.enabled = True
blog.twitter.enabled = True
blog.twitter.widget = True
blog.twitter.widget_id = "362060480841404416"
blog.twitter.user = "__fpip__"
blog.twitter.related = "mpirnat,davenoyes,benjaminws,dstanek,mcrute,codeshaman"
blog.disqus.enabled = False
blog.contactform.enabled = True