project-akri / akri-docs

Documentation for Akri
https://docs.akri.sh/
Apache License 2.0
8 stars 21 forks source link

Website does not have the correct trademark disclaimer #107

Closed thisisobate closed 6 months ago

thisisobate commented 7 months ago

As part of our ongoing effort to https://github.com/cncf/techdocs/issues/198, we noticed that the website does not pass the trademark criteria on CLOMonitor.

To fix this: Head to the source code of the website. In the <footer> section, add a disclaimer or link to the Linux foundation trademark disclaimer page:

Disclaimer

<footer>
   <p>The Linux Foundation has registered trademarks and uses trademarks. For a list of trademarks of The Linux Foundation, 
         please see our <a href="https://www.linuxfoundation.org/legal/trademark-usage">Trademark Usage page</a>.
   </p>
</footer>

Link

 <footer>
      <ul>
          <li><a href="https://www.linuxfoundation.org/legal/trademark-usage">Trademarks</a></li>
      </ul>
 </footer>
kate-goldenring commented 7 months ago

@thisisobate the GitBook free version we use does not support footers. Would CNCF support us in upgrading to pro or enterprise? Or is there a different documents CMS that we should move to?

thisisobate commented 7 months ago

We usually advise all our projects to use the Hugo/docsy/netlify stack. In case you're looking to migrating on the long term, please feel free to open a ticket on our servicedesk platform.

For a quick fix, you can actually add the disclaimer at the bottom of your readme page:

The Linux Foundation has registered trademarks and uses trademarks. For a list of trademarks of The Linux Foundation, 
         please see our [Trademark Usage page](https://www.linuxfoundation.org/legal/trademark-usage).

That should do the trick @kate-goldenring