cc_license.html 1002 B

1234567891011121314151617181920212223
  1. <p>
  2. &copy; {{ COPYRIGHT_NAME }} {{ COPYRIGHT_YEAR }} - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/{{ CC_LICENSE['slug'] }}/{{ CC_LICENSE['version'] }}/">{{ CC_LICENSE['name'] }} {{ CC_LICENSE['version'] }} International License</a>
  3. </p>
  4. {% include "partial/flex.html" %}
  5. <p>
  6. <a rel="license"
  7. href="http://creativecommons.org/licenses/{{ CC_LICENSE['slug'] }}/{{ CC_LICENSE['version'] }}/"
  8. target="_blank">
  9. <img alt="Creative Commons License"
  10. title="Creative Commons License"
  11. style="border-width:0"
  12. {% if CC_LICENSE['local_icons'] %}
  13. src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/img/cc/{{ CC_LICENSE['slug'] }}.png"
  14. {% else %}
  15. src="https://i.creativecommons.org/l/{{ CC_LICENSE['slug'] }}/{{ CC_LICENSE['version'] }}/80x15.png"
  16. {% endif %}
  17. width="80"
  18. height="15"/>
  19. </a>
  20. {% if STATUSCAKE %}
  21. {% include "partial/statuscake.html" %}
  22. {% endif %}
  23. </p>