-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsettings.py
34 lines (29 loc) · 1.15 KB
/
settings.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
# -*- coding: utf-8 -*-
AUTHOR = u'Kenneth Reitz'
SITENAME = u'Kenneth Reitz'
SITEURL = 'http://www.kennethreitz.com'
GITHUB_URL = 'https://github.com/kennethreitz/'
DISQUS_SITENAME = 'kennethreitz'
PDF_GENERATOR = False
GOOGLE_ANALYTICS = 'UA-8742933-1'
GAUGES = '4ddc1ab3f5a1f57b4d000009'
BYLINE = '© 2012 Kenneth Reitz & co. All Rights Reserved.'
LINKS = (
('Colophon', '/pages/colophon.html'),
('Projects', '/pages/open-projects.html'),
('Articles', '/archives.html'),
)
SOCIAL = (
('Email', 'mailto:_@kennethreitz.com'),
('GitHub', 'https://github.com/kennethreitz'),
('Twitter', 'http://twitter.com/kennethreitz'),
('Flickr', 'http://flickr.com/photos/kennethreitz'),
)
PROJECTS = (
('Requests', 'http://python-requests.org', 'HTTP Module for Humans'),
('Httpbin.org', 'http://httpbin.org', 'HTTP Request and Response Service'),
('Tablib', 'http://python-tablib.org', 'Tabular Data Library'),
('Clint', 'https://github.com/kennethreitz/clint', 'Command Line Interface Tools'),
('Legit', 'https://github.com/kennethreitz/legit', 'Sexy Git CLI'),
('<i>&c.</i>', '/pages/open-projects.html', 'and more...'),
)