|
5 | 5 | """
|
6 | 6 |
|
7 | 7 | from __future__ import unicode_literals
|
| 8 | +from datetime import datetime |
8 | 9 |
|
9 | 10 | AUTHOR = 'Adam Parkin'
|
10 | 11 | SITENAME = 'The Codependent Codr'
|
|
24 | 25 | AUTHOR_FEED_RSS = None
|
25 | 26 |
|
26 | 27 | # Blogroll
|
27 |
| -# LINKS = (('Github', 'https://github.com/pzelnip'), |
| 28 | +# LINKS = (('github', 'https://github.com/pzelnip'), |
28 | 29 | # ('Twitter', 'https://twitter.com/codependentcodr'),
|
29 | 30 | # ('StackOverflow', 'http://stackoverflow.com/users/808804'),
|
30 | 31 | # ('LinkedIn', 'http://lnkd.in/ykHQiG'),
|
31 | 32 | # )
|
32 | 33 |
|
33 | 34 | # Social widget
|
34 |
| -SOCIAL = (('Github', 'https://github.com/pzelnip'), |
35 |
| - ('Twitter', 'https://twitter.com/codependentcodr'), |
36 |
| - ('StackOverflow', 'http://stackoverflow.com/users/808804'), |
37 |
| - ('LinkedIn', 'http://lnkd.in/ykHQiG'), |
| 35 | +SOCIAL = (('github', 'https://github.com/pzelnip'), |
| 36 | + ('twitter', 'https://twitter.com/codependentcodr'), |
| 37 | + ('stack-overflow', 'http://stackoverflow.com/users/808804'), |
| 38 | + ('linkedin', 'http://lnkd.in/ykHQiG'), |
38 | 39 | )
|
39 | 40 |
|
40 | 41 | DEFAULT_PAGINATION = 10
|
|
50 | 51 | DISPLAY_PAGES_ON_MENU = False
|
51 | 52 |
|
52 | 53 | MENUITEMS = (
|
53 |
| - ('Home', '/'), |
54 | 54 | ('Posts', '/category/posts.html'),
|
55 | 55 | ('Tags', '/tags.html'),
|
56 | 56 | ('About', '/about.html'),
|
57 | 57 | )
|
| 58 | + |
| 59 | +THEME = 'Flex' |
| 60 | + |
| 61 | +# Settings for the Flex theme, see docs at: |
| 62 | +# https://github.com/alexandrevicenzi/Flex/wiki/Custom-Settings |
| 63 | +SITETITLE = 'The Codependent Codr' |
| 64 | +# SITESUBTITLE = 'Foobar' |
| 65 | +SITELOGO = '/static/imgs/me.jpg' |
| 66 | +SITEDESCRIPTION = 'Random thoughts from a random developer' |
| 67 | +BROWSER_COLOR = '#eff3f9' |
| 68 | +COPYRIGHT_YEAR = str(datetime.now().year) |
| 69 | +CC_LICENSE = { |
| 70 | + 'name': 'Creative Commons Attribution-ShareAlike', |
| 71 | + 'version': '4.0', |
| 72 | + 'slug': 'by-sa' |
| 73 | +} |
| 74 | +MAIN_MENU = True |
0 commit comments