2019-03-23 22:29:32 +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 *
|
|
|
|
|
|
|
|
# If your site is available via HTTPS, make sure SITEURL begins with https://
|
2019-04-04 19:18:44 +02:00
|
|
|
SITEURL = 'https://unit.abbiamoundominio.org/'
|
2019-03-23 22:29:32 +01:00
|
|
|
RELATIVE_URLS = False
|
|
|
|
|
|
|
|
FEED_ALL_ATOM = 'feeds.atom.xml'
|
2019-03-27 16:54:04 +01:00
|
|
|
FEED_ALL_RSS = 'feed.xml'
|
2019-03-23 22:29:32 +01:00
|
|
|
|
|
|
|
DELETE_OUTPUT_DIRECTORY = True
|
|
|
|
|
|
|
|
# Following items are often useful when publishing
|
|
|
|
|
|
|
|
#DISQUS_SITENAME = ""
|
|
|
|
#GOOGLE_ANALYTICS = ""
|