forked from github/pelican
16 lines
311 B
Python
16 lines
311 B
Python
|
|
#!/usr/bin/env python
|
||
|
|
# -*- coding: utf-8 -*- #
|
||
|
|
|
||
|
|
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 = ""
|