blag/publishconf.py

20 lines
441 B
Python
Raw Normal View History

2016-08-03 02:36:43 -04:00
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
# This file is only used if you use `make publish` or
# explicitly specify it as your config file.
import os
import sys
sys.path.append(os.curdir)
from pelicanconf import *
2016-08-03 02:43:56 -04:00
SITEURL = 'https://adamgoldsmith.name/blag'
2016-08-03 02:36:43 -04:00
RELATIVE_URLS = False
FEED_ALL_ATOM = 'feeds/all.atom.xml'
CATEGORY_FEED_ATOM = 'feeds/%s.atom.xml'
DELETE_OUTPUT_DIRECTORY = True