remove paypal buttons
[markerbeacon.git] / pelicanconf.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*- #
3
4 AUTHOR = 'Marker Beacon'
5 SITENAME = 'Marker Beacon'
6 SITEURL = ''
7
8 PATH = 'content'
9 THEME = 'themes/markerbeacon'
10
11 TIMEZONE = 'Europe/Paris'
12 DEFAULT_LANG = 'en'
13
14 # Feed generation is usually not desired when developing
15 FEED_ALL_ATOM = None
16 CATEGORY_FEED_ATOM = None
17 TRANSLATION_FEED_ATOM = None
18 AUTHOR_FEED_ATOM = None
19 AUTHOR_FEED_RSS = None
20
21 STATIC_PATHS = ['images', 'download']
22
23 DISPLAY_PAGES_ON_MENU = False
24 DISPLAY_CATEGORIES_ON_MENU = False
25 MENUITEMS = (('News', '/category/news.html'),
26              ('About', '/pages/about-marker-beacon.html'),
27              ('Audio', '/pages/audio.html'),
28              ('Gallery', '/pages/gallery.html'),
29              ('Shop', '/pages/shop.html'),
30              ('FAQ', '/pages/faq.html'),)
31
32 # Blogroll
33 LINKS = (('Contact us: band@markerbeacon.org', 'mailto:band@markerbeacon.org'),
34          ('Music License: Creative Commons BY-SA 3.0', '/pages/license.html'),)
35
36 # Social widget
37 SOCIAL = (('Facebook', 'https://www.facebook.com/MARKER-BEACON-120062054749024'),
38           ('Youtube', 'https://www.youtube.com/user/artemis92400/videos'),)
39
40 DEFAULT_PAGINATION = 5
41
42 PLUGIN_PATHS = ['plugins']
43 PLUGINS = [
44     'pelican_youtube',
45     'gallery',
46     'thumbnailer',
47 ]
48
49 # thumbnailer config
50 IMAGE_PATH = 'images'
51 THUMBNAIL_KEEP_NAME = True
52 THUMBNAIL_KEEP_TREE = True
53
54 # Uncomment following line if you want document-relative URLs when developing
55 #RELATIVE_URLS = True