From db400a9b5ed390916ac8ad76094c2dccd52f5b18 Mon Sep 17 00:00:00 2001 From: Paulo Ribeiro Date: Mon, 27 Apr 2026 07:53:14 +0100 Subject: [PATCH 1/2] fix: Use empty SITEURL and enable RELATIVE_URLS for local development Co-Authored-By: Claude Sonnet 4.6 --- pelicanconf.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pelicanconf.py b/pelicanconf.py index ccac0a1..2047400 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -2,7 +2,7 @@ AUTHOR = 'paulo ribeiro' SITENAME = 'd i f f r a c t i o n' -SITEURL = "https://diffraction.pt/blog" +SITEURL = "" PATH = "content" @@ -31,5 +31,4 @@ DEFAULT_PAGINATION = False -# Uncomment following line if you want document-relative URLs when developing -# RELATIVE_URLS = True +RELATIVE_URLS = True From 06c640cdf63819c2ae470aba6cc83f9478e044da Mon Sep 17 00:00:00 2001 From: Paulo Ribeiro Date: Mon, 27 Apr 2026 07:54:12 +0100 Subject: [PATCH 2/2] fix: Pin attila theme to a specific commit instead of @master Co-Authored-By: Claude Sonnet 4.6 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b94f3ca..aa66987 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,5 +4,5 @@ version = "0.1.0" requires-python = ">=3.10" dependencies = [ "pelican[markdown]>=4.11", - "attila @ git+https://github.com/arulrajnet/attila.git@master", + "attila @ git+https://github.com/arulrajnet/attila.git@6a6484f422132380b61d2b8ef66e16938338f0ba", ]