forked from github/pelican
18 lines
343 B
Python
18 lines
343 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*- #
|
|
|
|
import sys
|
|
sys.path.append('.')
|
|
from pelicanconf import *
|
|
|
|
SITEURL = '$siteurl'
|
|
|
|
DELETE_OUTPUT_DIRECTORY = True
|
|
|
|
# Following items are often useful when publishing
|
|
|
|
# Uncomment following line for absolute URLs in production:
|
|
#RELATIVE_URLS = False
|
|
|
|
#DISQUS_SITENAME = ""
|
|
#GOOGLE_ANALYTICS = ""
|