Skip to content

Instantly share code, notes, and snippets.

@awreece
Created April 17, 2013 00:11
Show Gist options
  • Save awreece/5400729 to your computer and use it in GitHub Desktop.
Save awreece/5400729 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
THEME = './theme'
YEAR_ARCHIVE_SAVE_AS = 'posts/{date:%Y}/index.html'
MONTH_ARCHIVE_SAVE_AS = 'posts/{date:%Y}/{date:%m}/index.html'
ARTICLE_URL = 'posts/{date:%Y}/{date:%m}/{slug}.html'
ARTICLE_SAVE_AS = 'posts/{date:%Y}/{date:%m}/{slug}.html'
ARTICLE_LANG_URL = 'posts/{date:%Y}/{date:%m}/{slug}-{lang}.html'
ARTICLE_LANG_SAVE_AS = 'posts/{date:%Y}/{date:%m}/{slug}-{lang}.html'
DEFAULT_PAGINATION = 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment