forked from Arachnid/bloggart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
119 lines (96 loc) · 4.48 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# Name of the blog
blog_name = 'DoubleDutch Games'
blog_name_header = 'DoubleDutch Games'
# Your name (used for copyright info)
author_name = 'DoubleDutch Games'
# Default author key
default_author = 'doubledutchgames'
# List of authors
authors = {
'doubledutchgames': 'DoubleDutch Games',
'caspervanest': 'Cas',
'Stolk.GJ': 'GJ',
}
# (Optional) slogan
slogan = 'Stories about Game Design and Game Technology'
# The hostname this site will primarially serve off (used for Atom feeds)
host = 'www.doubledutchgames.com'
# Selects the theme to use. Theme names correspond to directories under
# the 'themes' directory, containing templates and static content.
theme = 'default'
# List of page templates
page_templates = {
'Theme.html': 'Theme',
'Simple.html': 'Simple',
'Empty.html': 'Empty',
'SpeedRunner.html': 'SpeedRunner',
'SpeedRunnerHD.html': 'SpeedRunnerHD',
'SpeedRunnerLeaderboard.html': 'SpeedRunner Leaderboard',
}
# Defines the URL organization to use for blog postings. Valid substitutions:
# slug - the identifier for the post, derived from the title
# year - the year the post was published in
# month - the month the post was published in
# day - the day the post was published in
post_path_format = '/%(year)d/%(month)02d/%(slug)s'
# A nested list of sidebar menus, for convenience. If this isn't versatile
# enough, you can edit themes/default/base.html instead.
sidebars = [
('DoubleDutch On', [
'<a href="http://www.twitter.com/dd_games" alt="Twitter" target="_blank"><img src="/static/default/images/twitter_icon.gif" class="icon"></a><a href="http://www.facebook.com/pages/DoubleDutch-Games/171363252897944" alt="Facebook" target="_blank"><img src="/static/default/images/facebook_icon.gif" class="icon"></a><a href="/feeds/atom.xml" alt="RSS" target="_blank"><img src="/static/default/images/rss_icon.gif" class="icon"></a>',
'<a href="http://www.doubledutchgames.com/contact/">Contact us</a>',
]),
('Games', [
'<a href="http://www.tinybuild.com/speedrunners" target="_blank">SpeedRunners</a>',
'<a href="http://www.doubledutchgames.com/speedrunner" target="_blank">SpeedRunner</a>',
'<a href="https://play.google.com/store/apps/details?id=com.doubledutchgames.tap321" target="_blank">321Tap</a>',
]),
('Presskit', [
'<a href="http://press.doubledutchgames.com">DoubleDutch Games</a>',
'<a href="http://tinybuild.com/speedrunners">Speedrunners</a>',
'<a href="http://www.doubledutchgames.com/321tap/">321Tap</a>',
]),
]
# Number of entries per page in indexes.
posts_per_page = 10
# The mime type to serve HTML files as.
html_mime_type = "text/html; charset=utf-8"
# To use disqus for comments, set this to the 'short name' of the disqus forum
# created for the purpose.
disqus_forum = 'doubledutchgamesblog'
# Length (in words) of summaries, by default
summary_length = 200
# If you want to use Google Analytics, enter your 'web property id' here
analytics_id = 'UA-18419693-1'
# If you want to use PubSubHubbub, supply the hub URL to use here.
hubbub_hub_url = 'http://pubsubhubbub.appspot.com/'
# If you want to use Google Site verification, go to
# https://www.google.com/webmasters/tools/ , add your site, choose the 'upload
# an html file' method, then set the NAME of the file below.
# Note that you do not need to download the file provided - just enter its name
# here.
google_site_verification = None
# Default markup language for entry bodies (defaults to html).
default_markup = 'html'
# Syntax highlighting style for RestructuredText and Markdown,
# one of 'manni', 'perldoc', 'borland', 'colorful', 'default', 'murphy',
# 'vs', 'trac', 'tango', 'fruity', 'autumn', 'bw', 'emacs', 'pastie',
# 'friendly', 'native'.
highlighting_style = 'friendly'
# Absolute url of the blog application use '/blog' for host/blog/
# and '' for host/.Also remember to change app.yaml accordingly
url_prefix = ''
# Defines where the user is defined in the rel="me" of your pages.
# This allows you to expand on your social graph.
rel_me = None
# For use a feed proxy like feedburne.google.com
feed_proxy = None
# To use Google Friends Connect.
# If you want use Google Friends Connect, go to http://www.google.com/friendconnect/
# and register your domain for get a Google Friends connect ID.
google_friends_id = None
google_friends_comments = True # For comments.
google_friends_members = True # For a members container.
# To format the date of your post.
# http://docs.djangoproject.com/en/1.1/ref/templates/builtins/#now
date_format = "d F, Y"