The RSS feed for the blog is available at https://activitywatch.net/feed.xml but the relevant embedded link element (eg at https://activitywatch.net/blog/) shows this:
<link rel="alternate" type="application/rss+xml" title="ActivityWatch - Open-source time tracker" href="https://activitywatch.net/"/>
Note that "/feed.xml" is missing off the end of the href.
A glance through the source seems to suggest that this line should handle it:
|
link(rel='alternate', type='application/rss+xml', title='{{ site.title }}', href='{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}') |
Yet this already contains "/feed.xml" so it's not clear to me why the rendered line is different, unless it's coming from a separate place. Perhaps a theme? I'm not familiar with Jekyll.
The RSS feed for the blog is available at https://activitywatch.net/feed.xml but the relevant embedded link element (eg at https://activitywatch.net/blog/) shows this:
Note that "/feed.xml" is missing off the end of the href.
A glance through the source seems to suggest that this line should handle it:
activitywatch.github.io/_includes/head.pug
Line 12 in b5cce71
Yet this already contains "/feed.xml" so it's not clear to me why the rendered line is different, unless it's coming from a separate place. Perhaps a theme? I'm not familiar with Jekyll.