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 current cookie banner code has some issues such that the code formatters flag it as incorrect code. It is because it doesn't follow the correct coding guidelines.
The cookie banner script lies in layouts/partials/footer.html
The line which assigns the cookie expiry date is as:
expires: {{site.Params.cookies.expire_days}}
This assignment causes the code formatters to go berserk.
The current cookie banner code has some issues such that the code formatters flag it as incorrect code. It is because it doesn't follow the correct coding guidelines.
The cookie banner script lies in
layouts/partials/footer.html
The line which assigns the cookie expiry date is as:
This assignment causes the code formatters to go berserk.
The correct assignment would be:
Same goes for the script in the same file where the index URL is assigned as:
The correct way would be:
The text was updated successfully, but these errors were encountered: