-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpublishconf.py
More file actions
31 lines (24 loc) · 895 Bytes
/
publishconf.py
File metadata and controls
31 lines (24 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
# 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://
SITEURL = 'https://ocns.github.io/SoftwareWG/'
FEED_DOMAIN = SITEURL
FEED_ALL_ATOM = 'feeds/all.atom.xml'
FEED_ALL_RSS = 'feeds/all.rss.xml'
CATEGORY_FEED_ATOM = 'feeds/categories/{slug}.atom.xml'
CATEGORY_FEED_RSS = 'feeds/categories/{slug}.rss.xml'
TAG_FEED_ATOM = 'feeds/tags/{slug}.atom.xml'
TAG_FEED_RSS = 'feeds/tags/{slug}.rss.xml'
AUTHOR_FEED_ATOM = 'feeds/authors/{slug}.atom.xml'
AUTHOR_FEED_RSS = 'feeds/authors/{slug}.rss.xml'
FEED_MAX_ITEMS = 10
DELETE_OUTPUT_DIRECTORY = False
# Following items are often useful when publishing
# DISQUS_SITENAME = ""
# GOOGLE_ANALYTICS = ""