diff options
author | Rahul Nair <rn@rahul-nair.com> | 2017-08-04 07:47:36 +0530 |
---|---|---|
committer | Justin Mayer <entroP@gmail.com> | 2017-08-03 19:17:36 -0700 |
commit | 3f9ddddab6f49eb2d2df35d47de78c0dddea3088 (patch) | |
tree | 65be5b1919d6f2feff3f94a5f7f8e6cbc575253d /graymill/sample_pelicanconf.py | |
parent | 2a00d3cbf6ed7745ae3cd2f6a557bad31d4a3990 (diff) | |
download | pelican-themes-3f9ddddab6f49eb2d2df35d47de78c0dddea3088.tar.gz |
Add Graymill theme
Diffstat (limited to 'graymill/sample_pelicanconf.py')
-rw-r--r-- | graymill/sample_pelicanconf.py | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/graymill/sample_pelicanconf.py b/graymill/sample_pelicanconf.py new file mode 100644 index 0000000..8a9680e --- /dev/null +++ b/graymill/sample_pelicanconf.py @@ -0,0 +1,55 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- # +from __future__ import unicode_literals + +# Basic information +AUTHOR = u'author' +AUTHOREMAIL = 'myemail [at] mydomain [dot] tld' +SITENAME = u'siteName' +SITEURL = 'http://muchbits.com' + +PATH = 'content' + +TIMEZONE = 'Asia/Kolkata' + +DEFAULT_LANG = u'en' +THEME = 'themes/graymill' + +# Social widgets +SOCIAL = (('twitter', 'https://twitter.com/'), + ('linkedin', 'https://www.linkedin.com/'), + ('github', 'https://github.com/'), + ('facebook', 'https://facebook.com/'), + ) + +DEFAULT_PAGINATION = 8 + +SITEDESCRIPTION = 'my custom tagline/description' + +# For post-summaries +DISPLAY_SUMMARY = True + +# To display static pages like About, Contact etc. +DISPLAY_PAGES_ON_MENU = True + +MENUITEMS = (('Home', SITEURL), + ) + +# Feed generation is usually not desired when developing +FEED_ALL_RSS = False +FEED_ALL_ATOM = False +FEED_ALL_ATOM = None +CATEGORY_FEED_ATOM = None +TRANSLATION_FEED_ATOM = None +AUTHOR_FEED_ATOM = None +AUTHOR_FEED_RSS = None + +# Favicon (path relative to './content/') +FAVICON = 'images/favicon.png' + +# To include custom static files like htaccess, robots, PDF files etc. (path relative to './content/') +STATIC_PATHS = ['images', 'extras'] +EXTRA_PATH_METADATA = { + 'extras/.htaccess': {'path': '.htaccess'}, + 'extras/robots.txt': {'path': 'robots.txt'}, +} |