from pickle import TRUE AUTHOR = 'Jeff MacKinnon' SITENAME = "JeffTheme-Demo" SITEURL = '' PATH = 'content' TIMEZONE = 'America/Glace_Bay' DEFAULT_LANG = 'en' # URL Settings ARCHIVES_SAVE_AS = 'archives.html' YEAR_ARCHIVE_SAVE_AS = 'archive/{date:%Y}/index.html' #MONTH_ARCHIVE_SAVE_AS = 'archive/{date:%Y}/{date:%b}/index.html' # 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 = ( ('JMK Engineering Inc.', 'https://jmkengineering.com'), ("Jeff's Homepage", 'https://jeffmackinnon.com'), ('Pelican', 'https://getpelican.com/'), ('Python.org', 'https://www.python.org/'), ('Jinja2', 'https://palletsprojects.com/p/jinja/'), ) # Social widget SOCIAL = ( ('Mastodon', 'https://bluenoser.me/@Jeff'), ) DEFAULT_PAGINATION = 6 # Uncomment following line if you want document-relative URLs when developing RELATIVE_URLS = True DISPLAY_CATEGORIES_ON_MENU = True DELETE_OUTPUT_DIRECTORY = False STATIC_PATHS = ['images','../content'] SUMMARY_MAX_LENGTH = 20 THEME = '../../theme-jeffmackinnon.com' # #################################################### # JeffTheme variables # #################################################### #DIRECT_TEMPLATES = ['posts'] # If you already have a direct templates just add posts. #THEME_COLOUR = 'css-blue' # Leave commented ## The search things DUCKDUCKGOSEARCHURL = 'jeffmackinnon.com' BIO_IMAGE = 'jeffmackinnon.jpg' # Make sure that this is in the "images" folder SHOWCATEGORIES = True SHOWTAGS = False ## The Social Things SOCIAL_SHARE = True SOCIAL_TWITTER = 'jeffmackinnon' SOCIAL_GITHUB = 'Jeffmackinnon' SOCIAL_LINKEDIN = 'jeffmackinnon' SOCIAL_FLICKR = 'jeffmackinnon' SOCIAL_MASTODON = 'https://bluenoser.me/@Jeff' MICROBLOG = 'microblog' MASTODON_COMMENTS = False TWITTER_COMMENTS = True COMMENTS = False #Contact Things #CONTACT_PHONE_NUM = '+1 (902) 237-9984' #CONTACT_EMAIL = 'jeff@jeffmackinnon.com' CONTACT_HOME_ADDR = 'Halifax, NS' #CONTACT_BUSINESS_ADDR ='' SITELICENSE = 'Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.' TRACKING = False IMAGETRACKINGCODE = '' # This is for https://fediring.net/#table-of-members and is located in the sidebar FEDIRING = False FEDIRINGRANDOM = True FEDIRINGURL = '' # This is needed because the SITEURL includes the https:// and Fediring doesn't want that part. COMMENTS = False # That's all folks # #################################################### # Setting up the pelican-photos plugin "stuff" PHOTO_LIBRARY = "A:/Drive/Pictures/publichomepage" PHOTO_GALLERY = (4096, 4096, 90) # This is the maximum length, height and jpg quality PHOTO_ARTICLE = (1920, 1920, 80) PHOTO_SQUARE_THUMB = True PHOTO_THUMB = (400, 400, 60) PHOTO_RESIZE_JOBS = -1 PHOTO_WATERMARK = True PHOTO_WATERMARK_TEXT = 'jeffmackinnon.com' PHOTO_EXIF_KEEP = True PHOTO_EXIF_REMOVE_GPS = True # I do want to remove GPS from all the images PHOTO_EXIF_COPYRIGHT = 'COPYRIGHT' PHOTO_EXIF_COPYRIGHT_AUTHOR = 'Jeff MacKinnon' # Sitemap generation settings SITEMAP = { } IMAGE_PROCESS = { }