sitolost/publishconf.py

29 lines
570 B
Python
Raw Normal View History

2019-10-23 14:37:16 +02: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 *
2020-01-01 17:39:10 +01:00
SITEURL = 'https://lost.abbiamoundominio.org'
2019-10-23 14:37:16 +02:00
RELATIVE_URLS = False
2020-01-01 13:15:30 +01:00
FEED_ALL_ATOM = 'feeds.atom.xml'
FEED_ALL_RSS = 'feed.xml'
TAG_FEED_ATOM = 'feeds/feed.{slug}.atom.xml'
2019-10-23 14:37:16 +02:00
DELETE_OUTPUT_DIRECTORY = True
# Following items are often useful when publishing
#DISQUS_SITENAME = ""
#GOOGLE_ANALYTICS = ""
2019-11-15 18:16:44 +01:00