-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpelicanconf.py
More file actions
32 lines (23 loc) · 832 Bytes
/
pelicanconf.py
File metadata and controls
32 lines (23 loc) · 832 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
AUTHOR = u'Braddock Gaskill'
SITENAME = u'Internet-in-a-Box'
SITESUBTITLE = u"Sharing the world's Free information"
SITEURL = ''
GITHUB_URL = 'https://github.com/braddockcg/internet-in-a-box'
# Use relative URLS when generating locally
RELATIVE_URLS = True
TIMEZONE = 'US/Pacific'
DEFAULT_LANG = u'en'
DEFAULT_PAGINATION = 0
# Custom theme based on Github Pages slate theme
THEME = "theme/bootlex"
DISPLAY_PAGES_ON_MENU = False
INDEX_SAVE_AS = "news.html"
INDEX_PAGE_TITLE = "News"
MENUITEMS = ( ('Home', '/'),
('News', '/news.html'),
('About', '/pages/about.html'),
('Contributing', '/pages/contributing.html'),
)
FILES_TO_COPY = (("CNAME","CNAME"), ("201304_SGVLUG_Presentation.pdf", "201304_SGVLUG_Presentation.pdf"))