2015-03-13 12:58:31 +01: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-01-25 18:53:49 +01:00
|
|
|
SITEURL = '/hackit16'
|
2015-03-26 13:54:22 +01:00
|
|
|
RELATIVE_URLS = True
|
2015-03-13 12:58:31 +01:00
|
|
|
|
2015-03-26 13:54:22 +01:00
|
|
|
# DELETE_OUTPUT_DIRECTORY = True
|
2015-03-13 12:58:31 +01:00
|
|
|
|
|
|
|
# Following items are often useful when publishing
|
|
|
|
|
|
|
|
#DISQUS_SITENAME = ""
|
|
|
|
#GOOGLE_ANALYTICS = ""
|