2022-10-17 01:59:22 +00:00
|
|
|
# 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 *
|
2022-11-03 03:36:10 +00:00
|
|
|
SITEBASE = "/blog"
|
2022-10-17 01:59:22 +00:00
|
|
|
|
|
|
|
# If your site is available via HTTPS, make sure SITEURL begins with https://
|
2022-10-17 03:18:28 +00:00
|
|
|
SITEURL = 'https://tyrel.dev/blog'
|
2022-10-17 01:59:22 +00:00
|
|
|
RELATIVE_URLS = False
|
|
|
|
|
2022-10-17 04:26:02 +00:00
|
|
|
FEED_ATOM = 'tyrel-dev.atom.xml'
|
2022-11-03 05:55:17 +00:00
|
|
|
FEED_RSS = None
|
2022-10-17 04:26:02 +00:00
|
|
|
FEED_ALL_ATOM = 'tyrel-dev.all.xml'
|
2022-11-03 05:55:17 +00:00
|
|
|
FEED_ALL_RSS = None
|
2022-10-17 04:26:02 +00:00
|
|
|
|
2022-10-17 01:59:22 +00:00
|
|
|
|
|
|
|
DELETE_OUTPUT_DIRECTORY = True
|
|
|
|
|
|
|
|
# Following items are often useful when publishing
|
|
|
|
|
|
|
|
#DISQUS_SITENAME = ""
|
2022-10-17 03:02:04 +00:00
|
|
|
#GOOGLE_ANALYTICS = ""
|