Skip to content

Instantly share code, notes, and snippets.

@jvgomez
Created November 25, 2014 08:51
Show Gist options
  • Save jvgomez/45acdabea4f9ec522765 to your computer and use it in GitHub Desktop.
Save jvgomez/45acdabea4f9ec522765 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
# Site setings
AUTHOR = u'Javier V. Gómez'
SITENAME = u'JV - Science and stuff.'
#SITEURL = 'https://jvgomez.github.io'
SITEURL = ''
TIMEZONE = 'Europe/Paris'
DEFAULT_LANG = u'en'
THEME = 'tuxlite_tbs'
# Pelican paths
PATH = 'content'
STATIC_PATHS = ['images', 'files']
PLUGIN_PATHS = ["pelican-plugins"]
# Plugins activation
PLUGINS = ['extract_toc', 'liquid_tags.youtube']
MD_EXTENSIONS = ['toc']
RESPONSIVE_IMAGES = True
# 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/'),
)
# Social widget
SOCIAL = (('', 'http://stackoverflow.com/users/2283531/javi-v'),
('', 'http://github.com/jvgomez'),
('', 'https://www.linkedin.com/profile/view?id=105141580'),
)
DEFAULT_PAGINATION = False
# Uncomment following line if you want document-relative URLs when developing
#RELATIVE_URLS = True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment