├── .circleci └── config.yml ├── .gitignore ├── .nvmrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── gulpfile.js ├── index.html ├── minimal.html ├── package.json ├── src ├── coffee │ ├── app.coffee │ ├── button.coffee │ ├── clients.coffee │ ├── clients_panel.coffee │ ├── colors.coffee │ ├── finish_panel.coffee │ ├── iframe_click.coffee │ ├── iframe_resizer.coffee │ ├── panel.coffee │ ├── podcast_panel.coffee │ ├── popup.coffee │ ├── translations.coffee │ ├── user_agent.coffee │ └── utils.coffee ├── fonts │ ├── podlove │ │ ├── Podlove.eot │ │ ├── Podlove.svg │ │ ├── Podlove.ttf │ │ └── Podlove.woff │ ├── roboto_light │ │ ├── Roboto-Light-webfont.eot │ │ ├── Roboto-Light-webfont.svg │ │ ├── Roboto-Light-webfont.ttf │ │ └── Roboto-Light-webfont.woff │ └── roboto_medium │ │ ├── Roboto-Medium-webfont.eot │ │ ├── Roboto-Medium-webfont.svg │ │ ├── Roboto-Medium-webfont.ttf │ │ └── Roboto-Medium-webfont.woff ├── html │ └── button.html ├── images │ ├── android │ │ ├── acast.png │ │ ├── antennapod.png │ │ ├── beyondpod.png │ │ ├── chakouat.png │ │ ├── doggcatcher.png │ │ ├── playerfm.png │ │ ├── pocketcasts.png │ │ ├── podcastaddict.png │ │ ├── podcastrepublic.png │ │ ├── podcatcher-deluxe.png │ │ ├── podkicker.png │ │ ├── shortorange.png │ │ └── upod.png │ ├── blackberry │ │ ├── bpod.png │ │ └── gpodder.png │ ├── cloud │ │ ├── gpoddernet.png │ │ ├── instacastcloud.png │ │ ├── playerfm.png │ │ ├── pocketcasts.png │ │ └── shortorange.png │ ├── generic │ │ ├── android.png │ │ ├── rss.png │ │ ├── windows.png │ │ ├── windows8.png │ │ └── windowsphone.png │ ├── icon-big.png │ ├── icon-big@2x.png │ ├── icon-medium.png │ ├── icon-medium@2x.png │ ├── icon-small.png │ ├── icon-small@2x.png │ ├── icon.svg │ ├── ios │ │ ├── castro.png │ │ ├── downcast.png │ │ ├── icatcher.png │ │ ├── instacast.png │ │ ├── overcast.png │ │ ├── pocketcasts.png │ │ ├── podcasts.png │ │ ├── podcat.png │ │ ├── podgrasp.png │ │ ├── podwrangler.png │ │ ├── rssradio.png │ │ ├── shortorange.png │ │ └── sleekcast.png │ ├── osx │ │ ├── downcast.png │ │ ├── gpodder.png │ │ ├── instacast.png │ │ ├── itunes.png │ │ ├── miro.png │ │ ├── podcasts_big_sur.png │ │ ├── podcasts_catalina.png │ │ ├── podgrasp.png │ │ └── podsnatcher.png │ ├── podlove.svg │ ├── stores │ │ ├── android.png │ │ ├── apple-app-store-en.png │ │ ├── apple-app-store-en.svg │ │ ├── blackberry-world-en.png │ │ ├── google-play-en.png │ │ ├── google-play-en.svg │ │ ├── google-play-en@1x.svg │ │ ├── ios.png │ │ ├── osx.png │ │ ├── windows-phone-store-en.png │ │ ├── windows-phone-store-en.svg │ │ ├── windows-store-en.png │ │ ├── windows-store-en.svg │ │ ├── windows8.png │ │ ├── windows81.png │ │ └── windowsphone.png │ ├── unix │ │ ├── clementine.png │ │ ├── gpodder.png │ │ └── miro.png │ ├── windows │ │ ├── gpodder.png │ │ ├── itunes.png │ │ ├── miro.png │ │ └── podscout.png │ └── windowsphone │ │ ├── bringcast.png │ │ ├── gramocast.png │ │ ├── ipodcast.png │ │ ├── pcast.png │ │ ├── podcastbrain.png │ │ ├── podcastlounge.png │ │ ├── podcastpicker.png │ │ ├── podcasts.png │ │ ├── podcastspro.png │ │ └── wpodder.png └── stylesheets │ ├── _podlove-fonts.scss │ ├── _podlove-mixins.scss │ ├── _podlove-subscribe-button.scss │ ├── _podlove-subscribe-popup.scss │ ├── _podlove-subscribe.scss │ ├── _podlove-variables.scss │ └── app.scss └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .tmp 3 | .sass-cache 4 | dist 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/index.html -------------------------------------------------------------------------------- /minimal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/minimal.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/package.json -------------------------------------------------------------------------------- /src/coffee/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/coffee/app.coffee -------------------------------------------------------------------------------- /src/coffee/button.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/coffee/button.coffee -------------------------------------------------------------------------------- /src/coffee/clients.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/coffee/clients.coffee -------------------------------------------------------------------------------- /src/coffee/clients_panel.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/coffee/clients_panel.coffee -------------------------------------------------------------------------------- /src/coffee/colors.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/coffee/colors.coffee -------------------------------------------------------------------------------- /src/coffee/finish_panel.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/coffee/finish_panel.coffee -------------------------------------------------------------------------------- /src/coffee/iframe_click.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/coffee/iframe_click.coffee -------------------------------------------------------------------------------- /src/coffee/iframe_resizer.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/coffee/iframe_resizer.coffee -------------------------------------------------------------------------------- /src/coffee/panel.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/coffee/panel.coffee -------------------------------------------------------------------------------- /src/coffee/podcast_panel.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/coffee/podcast_panel.coffee -------------------------------------------------------------------------------- /src/coffee/popup.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/coffee/popup.coffee -------------------------------------------------------------------------------- /src/coffee/translations.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/coffee/translations.coffee -------------------------------------------------------------------------------- /src/coffee/user_agent.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/coffee/user_agent.coffee -------------------------------------------------------------------------------- /src/coffee/utils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/coffee/utils.coffee -------------------------------------------------------------------------------- /src/fonts/podlove/Podlove.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/fonts/podlove/Podlove.eot -------------------------------------------------------------------------------- /src/fonts/podlove/Podlove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/fonts/podlove/Podlove.svg -------------------------------------------------------------------------------- /src/fonts/podlove/Podlove.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/fonts/podlove/Podlove.ttf -------------------------------------------------------------------------------- /src/fonts/podlove/Podlove.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/fonts/podlove/Podlove.woff -------------------------------------------------------------------------------- /src/fonts/roboto_light/Roboto-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/fonts/roboto_light/Roboto-Light-webfont.eot -------------------------------------------------------------------------------- /src/fonts/roboto_light/Roboto-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/fonts/roboto_light/Roboto-Light-webfont.svg -------------------------------------------------------------------------------- /src/fonts/roboto_light/Roboto-Light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/fonts/roboto_light/Roboto-Light-webfont.ttf -------------------------------------------------------------------------------- /src/fonts/roboto_light/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/fonts/roboto_light/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /src/fonts/roboto_medium/Roboto-Medium-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/fonts/roboto_medium/Roboto-Medium-webfont.eot -------------------------------------------------------------------------------- /src/fonts/roboto_medium/Roboto-Medium-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/fonts/roboto_medium/Roboto-Medium-webfont.svg -------------------------------------------------------------------------------- /src/fonts/roboto_medium/Roboto-Medium-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/fonts/roboto_medium/Roboto-Medium-webfont.ttf -------------------------------------------------------------------------------- /src/fonts/roboto_medium/Roboto-Medium-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/fonts/roboto_medium/Roboto-Medium-webfont.woff -------------------------------------------------------------------------------- /src/html/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/html/button.html -------------------------------------------------------------------------------- /src/images/android/acast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/android/acast.png -------------------------------------------------------------------------------- /src/images/android/antennapod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/android/antennapod.png -------------------------------------------------------------------------------- /src/images/android/beyondpod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/android/beyondpod.png -------------------------------------------------------------------------------- /src/images/android/chakouat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/android/chakouat.png -------------------------------------------------------------------------------- /src/images/android/doggcatcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/android/doggcatcher.png -------------------------------------------------------------------------------- /src/images/android/playerfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/android/playerfm.png -------------------------------------------------------------------------------- /src/images/android/pocketcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/android/pocketcasts.png -------------------------------------------------------------------------------- /src/images/android/podcastaddict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/android/podcastaddict.png -------------------------------------------------------------------------------- /src/images/android/podcastrepublic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/android/podcastrepublic.png -------------------------------------------------------------------------------- /src/images/android/podcatcher-deluxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/android/podcatcher-deluxe.png -------------------------------------------------------------------------------- /src/images/android/podkicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/android/podkicker.png -------------------------------------------------------------------------------- /src/images/android/shortorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/android/shortorange.png -------------------------------------------------------------------------------- /src/images/android/upod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/android/upod.png -------------------------------------------------------------------------------- /src/images/blackberry/bpod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/blackberry/bpod.png -------------------------------------------------------------------------------- /src/images/blackberry/gpodder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/blackberry/gpodder.png -------------------------------------------------------------------------------- /src/images/cloud/gpoddernet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/cloud/gpoddernet.png -------------------------------------------------------------------------------- /src/images/cloud/instacastcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/cloud/instacastcloud.png -------------------------------------------------------------------------------- /src/images/cloud/playerfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/cloud/playerfm.png -------------------------------------------------------------------------------- /src/images/cloud/pocketcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/cloud/pocketcasts.png -------------------------------------------------------------------------------- /src/images/cloud/shortorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/cloud/shortorange.png -------------------------------------------------------------------------------- /src/images/generic/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/generic/android.png -------------------------------------------------------------------------------- /src/images/generic/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/generic/rss.png -------------------------------------------------------------------------------- /src/images/generic/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/generic/windows.png -------------------------------------------------------------------------------- /src/images/generic/windows8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/generic/windows8.png -------------------------------------------------------------------------------- /src/images/generic/windowsphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/generic/windowsphone.png -------------------------------------------------------------------------------- /src/images/icon-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/icon-big.png -------------------------------------------------------------------------------- /src/images/icon-big@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/icon-big@2x.png -------------------------------------------------------------------------------- /src/images/icon-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/icon-medium.png -------------------------------------------------------------------------------- /src/images/icon-medium@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/icon-medium@2x.png -------------------------------------------------------------------------------- /src/images/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/icon-small.png -------------------------------------------------------------------------------- /src/images/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/icon-small@2x.png -------------------------------------------------------------------------------- /src/images/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/icon.svg -------------------------------------------------------------------------------- /src/images/ios/castro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/ios/castro.png -------------------------------------------------------------------------------- /src/images/ios/downcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/ios/downcast.png -------------------------------------------------------------------------------- /src/images/ios/icatcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/ios/icatcher.png -------------------------------------------------------------------------------- /src/images/ios/instacast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/ios/instacast.png -------------------------------------------------------------------------------- /src/images/ios/overcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/ios/overcast.png -------------------------------------------------------------------------------- /src/images/ios/pocketcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/ios/pocketcasts.png -------------------------------------------------------------------------------- /src/images/ios/podcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/ios/podcasts.png -------------------------------------------------------------------------------- /src/images/ios/podcat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/ios/podcat.png -------------------------------------------------------------------------------- /src/images/ios/podgrasp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/ios/podgrasp.png -------------------------------------------------------------------------------- /src/images/ios/podwrangler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/ios/podwrangler.png -------------------------------------------------------------------------------- /src/images/ios/rssradio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/ios/rssradio.png -------------------------------------------------------------------------------- /src/images/ios/shortorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/ios/shortorange.png -------------------------------------------------------------------------------- /src/images/ios/sleekcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/ios/sleekcast.png -------------------------------------------------------------------------------- /src/images/osx/downcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/osx/downcast.png -------------------------------------------------------------------------------- /src/images/osx/gpodder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/osx/gpodder.png -------------------------------------------------------------------------------- /src/images/osx/instacast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/osx/instacast.png -------------------------------------------------------------------------------- /src/images/osx/itunes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/osx/itunes.png -------------------------------------------------------------------------------- /src/images/osx/miro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/osx/miro.png -------------------------------------------------------------------------------- /src/images/osx/podcasts_big_sur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/osx/podcasts_big_sur.png -------------------------------------------------------------------------------- /src/images/osx/podcasts_catalina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/osx/podcasts_catalina.png -------------------------------------------------------------------------------- /src/images/osx/podgrasp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/osx/podgrasp.png -------------------------------------------------------------------------------- /src/images/osx/podsnatcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/osx/podsnatcher.png -------------------------------------------------------------------------------- /src/images/podlove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/podlove.svg -------------------------------------------------------------------------------- /src/images/stores/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/stores/android.png -------------------------------------------------------------------------------- /src/images/stores/apple-app-store-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/stores/apple-app-store-en.png -------------------------------------------------------------------------------- /src/images/stores/apple-app-store-en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/stores/apple-app-store-en.svg -------------------------------------------------------------------------------- /src/images/stores/blackberry-world-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/stores/blackberry-world-en.png -------------------------------------------------------------------------------- /src/images/stores/google-play-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/stores/google-play-en.png -------------------------------------------------------------------------------- /src/images/stores/google-play-en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/stores/google-play-en.svg -------------------------------------------------------------------------------- /src/images/stores/google-play-en@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/stores/google-play-en@1x.svg -------------------------------------------------------------------------------- /src/images/stores/ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/stores/ios.png -------------------------------------------------------------------------------- /src/images/stores/osx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/stores/osx.png -------------------------------------------------------------------------------- /src/images/stores/windows-phone-store-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/stores/windows-phone-store-en.png -------------------------------------------------------------------------------- /src/images/stores/windows-phone-store-en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/stores/windows-phone-store-en.svg -------------------------------------------------------------------------------- /src/images/stores/windows-store-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/stores/windows-store-en.png -------------------------------------------------------------------------------- /src/images/stores/windows-store-en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/stores/windows-store-en.svg -------------------------------------------------------------------------------- /src/images/stores/windows8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/stores/windows8.png -------------------------------------------------------------------------------- /src/images/stores/windows81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/stores/windows81.png -------------------------------------------------------------------------------- /src/images/stores/windowsphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/stores/windowsphone.png -------------------------------------------------------------------------------- /src/images/unix/clementine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/unix/clementine.png -------------------------------------------------------------------------------- /src/images/unix/gpodder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/unix/gpodder.png -------------------------------------------------------------------------------- /src/images/unix/miro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/unix/miro.png -------------------------------------------------------------------------------- /src/images/windows/gpodder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/windows/gpodder.png -------------------------------------------------------------------------------- /src/images/windows/itunes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/windows/itunes.png -------------------------------------------------------------------------------- /src/images/windows/miro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/windows/miro.png -------------------------------------------------------------------------------- /src/images/windows/podscout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/windows/podscout.png -------------------------------------------------------------------------------- /src/images/windowsphone/bringcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/windowsphone/bringcast.png -------------------------------------------------------------------------------- /src/images/windowsphone/gramocast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/windowsphone/gramocast.png -------------------------------------------------------------------------------- /src/images/windowsphone/ipodcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/windowsphone/ipodcast.png -------------------------------------------------------------------------------- /src/images/windowsphone/pcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/windowsphone/pcast.png -------------------------------------------------------------------------------- /src/images/windowsphone/podcastbrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/windowsphone/podcastbrain.png -------------------------------------------------------------------------------- /src/images/windowsphone/podcastlounge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/windowsphone/podcastlounge.png -------------------------------------------------------------------------------- /src/images/windowsphone/podcastpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/windowsphone/podcastpicker.png -------------------------------------------------------------------------------- /src/images/windowsphone/podcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/windowsphone/podcasts.png -------------------------------------------------------------------------------- /src/images/windowsphone/podcastspro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/windowsphone/podcastspro.png -------------------------------------------------------------------------------- /src/images/windowsphone/wpodder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/images/windowsphone/wpodder.png -------------------------------------------------------------------------------- /src/stylesheets/_podlove-fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/stylesheets/_podlove-fonts.scss -------------------------------------------------------------------------------- /src/stylesheets/_podlove-mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/stylesheets/_podlove-mixins.scss -------------------------------------------------------------------------------- /src/stylesheets/_podlove-subscribe-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/stylesheets/_podlove-subscribe-button.scss -------------------------------------------------------------------------------- /src/stylesheets/_podlove-subscribe-popup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/stylesheets/_podlove-subscribe-popup.scss -------------------------------------------------------------------------------- /src/stylesheets/_podlove-subscribe.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/stylesheets/_podlove-subscribe.scss -------------------------------------------------------------------------------- /src/stylesheets/_podlove-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/stylesheets/_podlove-variables.scss -------------------------------------------------------------------------------- /src/stylesheets/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/src/stylesheets/app.scss -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podlove/podlove-subscribe-button/HEAD/yarn.lock --------------------------------------------------------------------------------