Skip to content

Commit a6a7027

Browse files
committed
[GitHub Action] correct SITEURL and RELATIVE_URLS setting
1 parent 1d961d9 commit a6a7027

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pelicanconf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
AUTHOR = "Peter"
77
SITENAME = "A Place for Asides"
88
SITEURL = ""
9+
RELATIVE_URLS = True
910

1011
PATH = "content"
1112

publishconf.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
sys.path.append(os.curdir)
1111
from pelicanconf import *
1212

13-
SITEURL = 'https://tonyromarock.github.io'
14-
RELATIVE_URLS = True
13+
SITEURL = "https://petermortimer.de"
14+
FEED_DOMAIN = SITEURL
15+
RELATIVE_URLS = False
1516

1617
FEED_ALL_ATOM = 'feeds/all.atom.xml'
1718
CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml'

0 commit comments

Comments
 (0)