-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.py
53 lines (42 loc) · 1.25 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
AUTHOR = 'Fatih'
SITENAME = u'Fatih Hayrioğlu\'nun not defteri'
SITESUBTITLE = u'{ CSS, HTML ve Javascript }'
SITEURL = 'http://www.fatihhayrioglu.com'
# Where to output the generated files.
OUTPUT_PATH = 'html/'
# path to look at for input files.
PATH = "source"
TIMEZONE = 'Europe/Istanbul'
DEFAULT_LANG = 'tr'
LOCALE = ('tr_TR',)
DATE_FORMAT = {
'tr': '%d %b %Y'
}
THEME = 'theme'
DISPLAY_PAGES_ON_MENU = False
#DELETE_OUTPUT_DIRECTORY = True
ARTICLE_URL = '{slug}/'
ARTICLE_SAVE_AS = '{slug}/index.html'
MD_EXTENSIONS = ['codehilite', 'extra']
STATIC_PATHS = ['dokumanlar', 'images',]
MENUITEMS = [('Anasayfa', '/'),
(u'Hakkımda', '/hakkimda/'),
('CSS Dersleri', '/css-dersleri/'),
('Git', '/git/'),
('Kitap', '/kitap/'),
(u'İletişim', '/iletisim/')]
# Blogroll
LINKS = ()
# Social widget
SOCIAL = (('@fatihhayri', 'http://twitter.com/fatihhayri'),)
PLUGINS=['pelican.plugins.related_posts',]
DEFAULT_PAGINATION = 10
TWITTER_USERNAME = "fatihhayri"
DISQUS_SITENAME = "fatihhayri"
GOOGLE_ANALYTICS = "UA-785768-1"
FILES_TO_COPY = (('extra/robots.txt', 'robots.txt'),
('extra/favicon.ico', 'favicon.ico'))
FEED_MAX_ITEMS = 10
CATEGORY_FEED_ATOM = None