support.html 1.1 KB

1234567891011121314151617181920
  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. <!-- Enable Buy Me a Coffee (buymeacoffee.com) floating button -->
  16. {{ with .buymeacoffee }}
  17. <script data-name="BMC-Widget" data-cfasync="false" src="https://cdnjs.buymeacoffee.com/1.0.0/widget.prod.min.js" data-id="{{ .user }}" data-description="{{ .text }}" data-message="{{ .info }}" data-color="{{ .color }}" data-position="Right" data-x_margin="10" data-y_margin="18"></script>
  18. {{ end }}
  19. {{ end }}
  20. {{ end }}