copyright.html 497 B

123456789101112131415161718
  1. <div class="md-copyright">
  2. {% if config.copyright %}
  3. <div class="md-copyright__highlight">
  4. {{ config.copyright }}
  5. </div>
  6. {% endif %}
  7. {% if not config.extra.generator == false %}
  8. Made with
  9. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  10. Material for MkDocs
  11. </a>
  12. {% endif %}
  13. </div>
  14. {% if not config.extra.build_public %}
  15. <div class="md-copyright">
  16. ℹ️ Documentation is being served locally
  17. </div>
  18. {% endif %}