support.html 1.1 KB

12345678910111213141516171819202122
  1. {{ with site.Params.features.support }}
  2. {{ if .enable }}
  3. {{ with .services }}
  4. <!-- Enable Ko-Fi floating button -->
  5. {{ with .kofi }}
  6. <script src='https://storage.ko-fi.com/cdn/scripts/overlay-widget.js'></script>
  7. <script>
  8. kofiWidgetOverlay.draw('{{ .user }}', {
  9. 'type': 'floating-chat',
  10. 'floating-chat.donateButton.text': '{{ .text }}',
  11. 'floating-chat.donateButton.text-color': '{{ .textColor }}',
  12. 'floating-chat.donateButton.background-color': '{{ .backgroundColor }}',
  13. });
  14. </script>
  15. {{ end }}
  16. <!-- Enable Buy Me a Coffee (buymeacoffee.com) floating button -->
  17. {{ with .buymeacoffee }}
  18. <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>
  19. {{ end }}
  20. {{ end }}
  21. {{ end }}
  22. {{ end }}