|
|
|
|
|
by DoctorOW
1280 days ago
|
|
You could add a data attribute to the html tag of the document with the current URL, I.E. <html data-path="https://www.saashub.com/about">
then hide the full page with: html {display: none;}
html[data-path*="saashub.com"] {display:block;}
|
|