-
Notifications
You must be signed in to change notification settings - Fork 0
/
pelicanconf.py
55 lines (41 loc) · 1.41 KB
/
pelicanconf.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
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
import os
AUTHOR = u'Beatson Group'
SITENAME = u'Beatson Microbial Genomics Lab'
SITEURL = ''
TIMEZONE = 'Australia/Brisbane'
DEFAULT_LANG = u'en'
STATIC_PATHS = ['images', 'downloads']
# Feed generation is usually not desired when developing
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
# Blogroll
LINKS = (('Code on GitHub', 'https://github.com/organizations/BeatsonLab-MicrobialGenomics'),
('SCMB@UQ', 'http://staff.scmb.uq.edu.au/staff/scott-beatson'),
('BRIG', 'http://sourceforge.net/projects/brig/'),
('EasyFig', 'http://easyfig.sourceforge.net'),
('SeqFindR', 'http://github.com/mscook/SeqFindR'),)
# Social widget
SOCIAL = ''
DEFAULT_PAGINATION = 3
CWD = os.getcwd()
THEME = os.path.join(CWD, "themes/pelican-bootstrap3")
FAVICON = 'images/favicon.png'
SITESUBTITLE = 'Microbial Genomics Laboratory'
FOOTER_TEXT = '(c) 2013-2014 Beatson Microbial Genomics Laboratory'
#Tweak visually
DISPLAY_CATEGORIES_ON_MENU = False
DISPLAY_PAGES_ON_MENU = True
DISPLAY_CATEGORIES_ON_SIDEBAR = False
DISPLAY_TAGS_ON_SIDEBAR = False
#MENUITEMS = 'Publications'
# Theme specific options for GitHub
GITHUB_USER = 'BeatsonLab-MicrobialGenomics'
GITHUB_REPO_COUNT = 3
GITHUB_SKIP_FORK = True
#Theme specific - Use bootswatch themes
BOOTSTRAP_THEME='yeti'
GOOGLE_ANALYTICS='UA-49094461-1'