forked from mikemhenry/blog.mikeandzoey
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpelicanconf.py
More file actions
56 lines (46 loc) · 2.09 KB
/
pelicanconf.py
File metadata and controls
56 lines (46 loc) · 2.09 KB
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
56
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
AUTHOR = 'Handy Code Job, LLC'
SITENAME = 'Handy Code Job'
SITEURL = 'handycodejob.com'
PATH = 'content'
TIMEZONE = 'America/Boise'
DEFAULT_LANG = 'en'
# Feed generation is usually not desired when developing
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
# Blogroll
LINKS = (('Pelican', 'http://getpelican.com/'),
('Python.org', 'http://python.org/'),
('Jinja2', 'http://jinja.pocoo.org/'),
('You can modify those links in your config file', '#'),)
# Social widget
SOCIAL = (('Github', 'https://github.com/handycodejob'),
('YouTube', 'https://www.youtube.com'),
('Bitbucket', 'https://bitbucket.com/handycodejob'))
DEFAULT_PAGINATION = 10
# Uncomment following line if you want document-relative URLs when developing
# RELATIVE_URLS = True
# Style Stuff
THEME = 'materialistic-pelican'
USE_CDN = True
USER_LOGO_URL = SITEURL + "static/images/logo.svg" #: an image around 100px square
#SITETAGLINE = "Mike & Zoey's life style blog" #: a short sentence that describes your site
#SITEDESCR = "Mike & Zoey live in Boise, ID together. They love good food and happy hour!" #: a longer description of your site
GITHUB_URL = "https://github.com/mikemhenry" #: URL to your GitHub page, for the social icons
#LINKEDIN_URL #: URL to your LinkedIn page, for the social icons
TWITTER_URL = "https://twitter.com/ZoeyHogue" #: URL to your Twitter page, for the social icons
#FACEBOOK_URL#: URL to your Facebook page, for the social icons
#GOOGLE_URL#: URL to your Google Plus page, for the social icons
#FLICKR_URL#: URL to your Flickrpage, for the social icons
LICENSE_NAME = "CC BY-NC-SA"#: the license for your content (e.g. CC BY-SA)
LICENSE_URL = "http://creativecommons.org/licenses/by-nc-sa/4.0/" #: the link to where the full text of your license is
ARCHIVES_URL = "archives.html" #: the link to your archives
#CONTACT_URL#: the link to your contact page
PRIMARY_COLOR = 'Cyan'
ACCENT_COLOR = 'Blue'
STATIC_PATHS = ['static']