You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "Click here to go to latest. [version]" links at the top of the docs site send you back to https://docs.opencti.io/latest/, rather than sending you to the latest version of whatever page you're on.
It looks like you're using GitHub pages for the site, which if I'm understanding it correctly uses Jekyll, which uses Liquid variable templates. I've not quite been able to determine how to fix this, but it could be as simple as replacing base_url with another variable - I've seen some suggestion that actually it might be baseurl, but not sure.
The text was updated successfully, but these errors were encountered:
The "Click here to go to latest. [version]" links at the top of the docs site send you back to https://docs.opencti.io/latest/, rather than sending you to the latest version of whatever page you're on.
E.g. If I'm on https://docs.opencti.io/5.11.X/deployment/authentication/, and I click the go-to-latest link, I would expect to go to https://docs.opencti.io/latest/deployment/authentication/, but am actually sent to https://docs.opencti.io/, which redirects to https://docs.opencti.io/latest.
I had a quick look at the code and I would guess the problem is in the overrides for main.html here:
docs/overrides/main.html
Line 5 in 4d8e29a
It looks like you're using GitHub pages for the site, which if I'm understanding it correctly uses Jekyll, which uses Liquid variable templates. I've not quite been able to determine how to fix this, but it could be as simple as replacing
base_url
with another variable - I've seen some suggestion that actually it might bebaseurl
, but not sure.The text was updated successfully, but these errors were encountered: