check in
[Ultimately_Untrue_Thought.git] / publishconf.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*- #
3 from __future__ import unicode_literals
4
5 # This file is only used if you use `make publish` or
6 # explicitly specify it as your config file.
7
8 import os
9 import sys
10 sys.path.append(os.curdir)
11 from pelicanconf import *
12
13 # XXX: relative URLs == False resulted in hostname erroneously appearing twice
14 # in path?!
15 RELATIVE_URLS = True
16
17 FEED_DOMAIN = SITEURL
18 FEED_ALL_ATOM = 'feeds/all.atom.xml'
19 CATEGORY_FEED_ATOM = 'feeds/%s.atom.xml'
20
21 DELETE_OUTPUT_DIRECTORY = True
22
23 GOOGLE_ANALYTICS = "UA-100822263-1"