2012-07-07 07:41:12 -07:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
# -*- coding: utf-8 -*- #
|
2013-04-21 15:18:31 -07:00
|
|
|
from __future__ import unicode_literals
|
2012-07-07 07:41:12 -07:00
|
|
|
|
2013-03-21 03:33:32 -07:00
|
|
|
# This file is only used if you use `make publish` or
|
|
|
|
|
# explicitly specify it as your config file.
|
|
|
|
|
|
2013-03-11 08:25:47 -04:00
|
|
|
import os
|
2012-07-07 16:59:58 -07:00
|
|
|
import sys
|
2013-03-11 08:25:47 -04:00
|
|
|
sys.path.append(os.curdir)
|
2012-07-07 07:41:12 -07:00
|
|
|
from pelicanconf import *
|
|
|
|
|
|
|
|
|
|
SITEURL = '$siteurl'
|
2013-04-11 12:15:18 -07:00
|
|
|
RELATIVE_URLS = False
|
2012-07-07 07:41:12 -07:00
|
|
|
|
2013-04-12 08:48:42 -07:00
|
|
|
FEED_ALL_ATOM = 'feeds/all.atom.xml'
|
|
|
|
|
CATEGORY_FEED_ATOM = 'feeds/%s.atom.xml'
|
|
|
|
|
|
2012-07-07 07:41:12 -07:00
|
|
|
DELETE_OUTPUT_DIRECTORY = True
|
|
|
|
|
|
|
|
|
|
# Following items are often useful when publishing
|
|
|
|
|
|
|
|
|
|
#DISQUS_SITENAME = ""
|
|
|
|
|
#GOOGLE_ANALYTICS = ""
|