support.html 651 B

12345678910111213141516
  1. {{ with site.Params.features.support }}
  2. {{ if .enabled }}
  3. <!-- Enable Ko-Fi floating button -->
  4. {{ with .kofi }}
  5. <script src='https://storage.ko-fi.com/cdn/scripts/overlay-widget.js'></script>
  6. <script>
  7. kofiWidgetOverlay.draw('{{ .user }}', {
  8. 'type': 'floating-chat',
  9. 'floating-chat.donateButton.text': '{{ .text }}',
  10. 'floating-chat.donateButton.text-color': '{{ .textColor }}',
  11. 'floating-chat.donateButton.background-color': '{{ .backgroundColor }}',
  12. });
  13. </script>
  14. {{ end }}
  15. {{ end }}
  16. {{ end }}