Skip to content

Commit

Permalink
add archives menu item and octopress submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
darosio committed Nov 22, 2017
1 parent 6c8c47b commit ea52f95
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "pelican-octopress-theme"]
path = pelican-octopress-theme
url = https://github.com/jakevdp/pelican-octopress-theme.git
1 change: 1 addition & 0 deletions pelican-octopress-theme
18 changes: 14 additions & 4 deletions pelicanconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None

THEME = '../pelican-octopress-theme/'

# Blogroll
# LINKS = (('Pelican', 'http://getpelican.com/'),
# ('Python.org', 'http://python.org/'),
Expand All @@ -33,8 +31,20 @@

DEFAULT_PAGINATION = 10

PLUGIN_PATHS = ['../pelican-plugins']
PLUGINS = ['org_pandoc_reader']
# Title menu options
MENUITEMS = [('Archives', 'archives.html')]

STATIC_PATHS = ['images', 'figures', 'downloads']

THEME = 'pelican-octopress-theme/'

PLUGIN_PATHS = ['../pelican-plugins', 'plugins']
PLUGINS = ['org_pandoc_reader', 'summary',
'liquid_tags.include_code',
'liquid_tags.literal',
'ipynb.markup',
'render_math']


# ORG_READER_EMACS_LOCATION = '/usr/bin/emacs'

Expand Down

0 comments on commit ea52f95

Please sign in to comment.